debian/rules: use $(CURDIR) instead of $$(pwd)
authorAntonio Ospite <ospite@studenti.unina.it>
Mon, 18 Nov 2013 23:19:53 +0000 (00:19 +0100)
committerAntonio Ospite <ospite@studenti.unina.it>
Mon, 18 Nov 2013 23:19:53 +0000 (00:19 +0100)
Avoid invoking the shell when make already has the needed information.

debian/rules

index 53bb7f1..7d0681e 100755 (executable)
@@ -4,4 +4,4 @@
        dh $@ 
 
 override_dh_auto_install:
-       $(MAKE) DESTDIR=$$(pwd)/debian/tweeper prefix=/usr install
+       $(MAKE) DESTDIR=$(CURDIR)/debian/tweeper prefix=/usr install