r7992 - in /trunk/libdbd-pg-perl/debian: changelog rules

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Fri Sep 28 17:06:27 UTC 2007


Author: dmn
Date: Fri Sep 28 17:06:27 2007
New Revision: 7992

URL: http://svn.debian.org/wsvn/?sc=1&rev=7992
Log:
* debian/rules:
  replace `pwd` with $(CURDIR), make with $(MAKE)

Modified:
    trunk/libdbd-pg-perl/debian/changelog
    trunk/libdbd-pg-perl/debian/rules

Modified: trunk/libdbd-pg-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libdbd-pg-perl/debian/changelog?rev=7992&op=diff
==============================================================================
--- trunk/libdbd-pg-perl/debian/changelog (original)
+++ trunk/libdbd-pg-perl/debian/changelog Fri Sep 28 17:06:27 2007
@@ -9,8 +9,10 @@
 
   [ Damyan Ivanov ]
   * debian/watch - version=3
-
- -- Damyan Ivanov <dmn at debian.org>  Fri, 28 Sep 2007 20:01:45 +0300
+  * debian/rules:
+    replace `pwd` with $(CURDIR), make with $(MAKE)
+
+ -- Damyan Ivanov <dmn at debian.org>  Fri, 28 Sep 2007 20:04:26 +0300
 
 libdbd-pg-perl (1.49-4) unstable; urgency=low
 

Modified: trunk/libdbd-pg-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libdbd-pg-perl/debian/rules?rev=7992&op=diff
==============================================================================
--- trunk/libdbd-pg-perl/debian/rules (original)
+++ trunk/libdbd-pg-perl/debian/rules Fri Sep 28 17:06:27 2007
@@ -10,7 +10,7 @@
 PERL = /usr/bin/perl 
 endif
 
-TMP     =`pwd`/debian/$(package)
+TMP     =$(CURDIR)/debian/$(package)
 
 PG_INCLUDEDIR = $(shell pg_config --includedir)
 PG_LIBDIR = $(shell pg_config --libdir)
@@ -42,7 +42,7 @@
 	dh_testroot
 	
 	-rm -f build-stamp install-stamp
-	if [ -e Makefile ]; then make realclean; fi
+	if [ -e Makefile ]; then $(MAKE) realclean; fi
 	-rm -f `find . -name "*~"`
 
 	dh_clean




More information about the Pkg-perl-cvs-commits mailing list