From: Antonio Ospite <ospite@studenti.unina.it>
Date: Mon, 18 Nov 2013 23:19:53 +0000 (+0100)
Subject: debian/rules: use $(CURDIR) instead of $$(pwd)
X-Git-Tag: debian/0.2-2~10
X-Git-Url: https://git.ao2.it/tweeper.git/commitdiff_plain/d52c5b105d8ffca8d336f446c7d841ca3c9e0a38?ds=inline

debian/rules: use $(CURDIR) instead of $$(pwd)

Avoid invoking the shell when make already has the needed information.
---

diff --git a/debian/rules b/debian/rules
index 53bb7f1..7d0681e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -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