[SVN] r512 - /branches/idled/debian/rules /branches/sarge-2.2.13/debian/rules /trunk/cyrus-imapd-2.2.13/debian/rules

debian at incase.de debian at incase.de
Fri Jul 21 14:29:21 UTC 2006


Author: sven
Date: Fri Jul 21 16:29:18 2006
New Revision: 512

URL: https://mail.incase.de/viewcvs?rev=512&root=cyrus22&view=rev
Log:
Fix a syntax problem in debian/rules (sed with $ inside string)

Modified:
    branches/idled/debian/rules
    branches/sarge-2.2.13/debian/rules
    trunk/cyrus-imapd-2.2.13/debian/rules

Modified: branches/idled/debian/rules
URL: https://mail.incase.de/viewcvs/branches/idled/debian/rules?rev=512&root=cyrus22&r1=511&r2=512&view=diff
==============================================================================
--- branches/idled/debian/rules (original)
+++ branches/idled/debian/rules Fri Jul 21 16:29:18 2006
@@ -123,7 +123,7 @@
 	# upgrading later
 	echo "DBENGINE $(DBENGINE)" >>debian/cyrus-db-types.txt
 	grep _db lib/imapoptions \
-	| cut -d, -f1-2 | sed -e 's/{ "//;s/_db", "/ /;s/"$//' \
+	| cut -d, -f1-2 | sed -e 's/{ "//;s/_db", "/ /;s/"\$//' \
 	| sed -e 's/^tls.* /TLS /;s/^subs.* /SUBS /;s/^seen.* /SEEN /;s/^pts.* /PTS /;s/^mbox.* /MBOX /'\
 	| awk '{printf("%s %s\n",toupper($1),$2);}' \
 	>>debian/cyrus-db-types.txt

Modified: branches/sarge-2.2.13/debian/rules
URL: https://mail.incase.de/viewcvs/branches/sarge-2.2.13/debian/rules?rev=512&root=cyrus22&r1=511&r2=512&view=diff
==============================================================================
--- branches/sarge-2.2.13/debian/rules (original)
+++ branches/sarge-2.2.13/debian/rules Fri Jul 21 16:29:18 2006
@@ -109,7 +109,7 @@
 	echo 'To build this package, configure was called as follows:' \
 		> debian/README.configure-options
 	grep with\ options config.status \
-	| sed -e 's/^.*options \\"/configure /;s/\\"$///' \
+	| sed -e 's/^.*options \\"/configure /;s/\\"\$///' \
 		>> debian/README.configure-options
 	sed -i 's/ -lsensors//' master/Makefile
 	touch configure-stamp

Modified: trunk/cyrus-imapd-2.2.13/debian/rules
URL: https://mail.incase.de/viewcvs/trunk/cyrus-imapd-2.2.13/debian/rules?rev=512&root=cyrus22&r1=511&r2=512&view=diff
==============================================================================
--- trunk/cyrus-imapd-2.2.13/debian/rules (original)
+++ trunk/cyrus-imapd-2.2.13/debian/rules Fri Jul 21 16:29:18 2006
@@ -109,7 +109,7 @@
 	echo 'To build this package, configure was called as follows:' \
 		> debian/README.configure-options
 	grep with\ options config.status \
-	| sed -e 's/^.*options \\"/configure /;s/\\"$///' \
+	| sed -e 's/^.*options \\"/configure /;s/\\"\$///' \
 		>> debian/README.configure-options
 	sed -i 's/ -lsensors//' master/Makefile
 	touch configure-stamp



More information about the Pkg-Cyrus-imapd-Debian-devel mailing list