Skip to content

Commit

Permalink
Merge pull request #28 from oliverkurth/topic/okurth/fix-DESTDIR-etc
Browse files Browse the repository at this point in the history
create $(DESTDIR)/etc/ if it does not exist
  • Loading branch information
oliverkurth authored Jul 25, 2023
2 parents 3d58138 + 5179cd0 commit 5afbfb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ova/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ all:

install:
mkdir -p $(DESTDIR)/$(PREFIX)/bin && cp $(EXE) $(DESTDIR)/$(PREFIX)/bin/
[ -f $(DESTDIR)/etc/open-vmdk.conf ] || echo "PREFIX=${PREFIX}" > $(DESTDIR)/etc/open-vmdk.conf
[ -f $(DESTDIR)/etc/open-vmdk.conf ] || mkdir -p $(DESTDIR)/etc/ && echo "PREFIX=${PREFIX}" > $(DESTDIR)/etc/open-vmdk.conf

0 comments on commit 5afbfb5

Please sign in to comment.