[Pkg-jed-commit] r217 - trunk/packages/jed-extra/debian

Rafael Laboissiere rafael at costa.debian.org
Wed Nov 23 08:17:19 UTC 2005


Author: rafael
Date: 2005-11-23 08:17:18 +0000 (Wed, 23 Nov 2005)
New Revision: 217

Modified:
   trunk/packages/jed-extra/debian/rules
Log:
Escape a "$" character in the $(shell) command


Modified: trunk/packages/jed-extra/debian/rules
===================================================================
--- trunk/packages/jed-extra/debian/rules	2005-11-22 14:56:11 UTC (rev 216)
+++ trunk/packages/jed-extra/debian/rules	2005-11-23 08:17:18 UTC (rev 217)
@@ -11,7 +11,7 @@
 
 debroot = $(PWD)/debian/jed-extra
 # upstream version
-VER = $(shell perl -ne '/\(([\d.]+)-/; print $1; exit' < debian/changelog)
+VER = $(shell perl -ne '/([\d.]+)-/; print $$1; exit' < debian/changelog)
 
 
 
@@ -23,7 +23,7 @@
 	#  This target fetches the most recent version of the original source 
 	#  package from a canonical archive site (via FTP or WWW, for example)
 	# The dependency on the archive file makes it idempotent
-		
+
 jed-extra_$(VER).orig.tar.gz:
 	# Get the upstream archive
 	# uncomment your choice of source location # TODO: make this an option




More information about the Pkg-jed-commit mailing list