[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

X Strike Force X.Org X11 SVN commit: r580 - branches/6.9/debian



Author: dnusinow
Date: 2005-09-03 11:47:07 -0500 (Sat, 03 Sep 2005)
New Revision: 580

Modified:
   branches/6.9/debian/rules
Log:
Fix goof in NONDBG_PACKAGES assignment. Got to remember to use two $'s when
writing Makefiles. Thanks Jeremy Shaw.


Modified: branches/6.9/debian/rules
===================================================================
--- branches/6.9/debian/rules	2005-09-03 16:44:02 UTC (rev 579)
+++ branches/6.9/debian/rules	2005-09-03 16:47:07 UTC (rev 580)
@@ -44,7 +44,7 @@
 # Get all our packages, which we'll later iterate through in order to properly 
 # create the debugging packages. This exclused arch-independant packages and 
 # metapackages
-NONDBG_PACKAGES:=$(shell awk '/^Package/{print $2}' debian/control | grep -v 'dbg' | grep -v '^xfonts' | grep -v '^xspecs$' | grep -v '^x-dev$' | grep -v '^x11-common$' | grep -v '^xlibs$' | grep -v '^xlibs-data$' | grep -v '^xlibs-dev$' | grep -v '^xlibs-pic$' | grep -v '$x-window-system$' | grep -v '^xfree86-common$' | sed 's/Package: //')
+NONDBG_PACKAGES:=$(shell awk '/^Package/{print $$2}' debian/control | grep -v 'dbg' | grep -v '^xfonts' | grep -v '^xspecs$' | grep -v '^x-dev$' | grep -v '^x11-common$' | grep -v '^xlibs$' | grep -v '^xlibs-data$' | grep -v '^xlibs-dev$' | grep -v '^xlibs-pic$' | grep -v '^x-window-system$' | grep -v '^xfree86-common$' | sed 's/Package: //')
 
 # Figure out who's building this package.
 BUILDER:=$(shell echo $${DEBEMAIL:-$${EMAIL:-$$(echo $$LOGNAME@$$(cat /etc/mailname 2>/dev/null))}})



Reply to: