[pkg-boost-commits] r14161 - boost/trunk/debian

smr at alioth.debian.org smr at alioth.debian.org
Mon Feb 18 21:48:35 UTC 2008


Author: smr
Date: 2008-02-18 21:48:34 +0000 (Mon, 18 Feb 2008)
New Revision: 14161

Modified:
   boost/trunk/debian/changelog
   boost/trunk/debian/rules
Log:
Fix lintian warning debian-rules-uses-pwd

Modified: boost/trunk/debian/changelog
===================================================================
--- boost/trunk/debian/changelog	2008-02-18 21:25:53 UTC (rev 14160)
+++ boost/trunk/debian/changelog	2008-02-18 21:48:34 UTC (rev 14161)
@@ -1,3 +1,10 @@
+boost (1.34.1-8) UNRELEASED; urgency=low
+
+  * debian/rules: Replace all use of $(PWD) and `pwd` by $(CURDIR); clears
+    up lintian warning debian-rules-uses-pwd.
+
+ -- Steve M. Robbins <smr at debian.org>  Mon, 18 Feb 2008 15:47:20 -0600
+
 boost (1.34.1-7) unstable; urgency=low
 
   * debian/control (libboost-dev): Move libboost-serialization-dev from

Modified: boost/trunk/debian/rules
===================================================================
--- boost/trunk/debian/rules	2008-02-18 21:25:53 UTC (rev 14160)
+++ boost/trunk/debian/rules	2008-02-18 21:48:34 UTC (rev 14161)
@@ -81,10 +81,10 @@
 
 exampledir = debian/libboost-doc/usr/share/doc/libboost-doc/examples
 htmldir = debian/libboost-doc/usr/share/doc/libboost-doc/HTML
-pyste_prefix = $(PWD)/debian/pyste/usr
-bjam = $(shell pwd)/tools/jam/src/bjam
+pyste_prefix = $(CURDIR)/debian/pyste/usr
+bjam = $(CURDIR)/tools/jam/src/bjam
 
-JAM = $(bjam) $(JOBS) -d2 --user-config=$(shell pwd)/user-config.jam -sHAVE_ICU=1
+JAM = $(bjam) $(JOBS) -d2 --user-config=$(CURDIR)/user-config.jam -sHAVE_ICU=1
 
 # BJAM segfaults if built with GCC 4.2, so build with GCC 4.1 to avoid problems.
 # See 367825 for a proper fix.
@@ -141,7 +141,7 @@
 	dh_testroot
 	dh_clean -k
 
-	$(JAM) --prefix=`pwd`/debian/tmp/usr install
+	$(JAM) --prefix=$(CURDIR)/debian/tmp/usr install
 
 	find debian/tmp/usr/include -type f | xargs chmod 644
 	find debian/tmp -name .cvsignore | xargs rm -f




More information about the pkg-boost-commits mailing list