Skip to content

Commit

Permalink
simplify install target
Browse files Browse the repository at this point in the history
no need to abuse the pwd shell command, we have a handy DESTDIR
variable, which the makefile should respect too. but because we need
to pass PREFIX anyways (since we need to override the correct upstream
default, /usr/local) it's probably not worth implementing DESTDIR in
the Makefile...
  • Loading branch information
anarcat committed Jan 16, 2017
1 parent 2653502 commit f5112ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
dh $@

override_dh_auto_install:
$(MAKE) PREFIX=$$(pwd)/debian/vmtouch/usr install
$(MAKE) PREFIX=$(CURDIR)/debian/vmtouch/usr install

0 comments on commit f5112ce

Please sign in to comment.