r14711 - gnucash/trunk - Replace : as sed's replacement command delimiter by # because on Windows, fully qualified filenames might contain the colon.

Christian Stimming cstim at cvs.gnucash.org
Tue Aug 22 15:41:19 EDT 2006


Author: cstim
Date: 2006-08-22 15:41:18 -0400 (Tue, 22 Aug 2006)
New Revision: 14711
Trac: http://svn.gnucash.org/trac/changeset/14711

Modified:
   gnucash/trunk/lib/libqof/backend/file/Makefile.am
   gnucash/trunk/lib/libqof/qof/Makefile.am
   gnucash/trunk/src/engine/Makefile.am
   gnucash/trunk/src/scm/Makefile.am
Log:
Replace : as sed's replacement command delimiter by # because on Windows, fully qualified filenames might contain the colon. 

Modified: gnucash/trunk/lib/libqof/backend/file/Makefile.am
===================================================================
--- gnucash/trunk/lib/libqof/backend/file/Makefile.am	2006-08-22 19:26:10 UTC (rev 14710)
+++ gnucash/trunk/lib/libqof/backend/file/Makefile.am	2006-08-22 19:41:18 UTC (rev 14711)
@@ -36,7 +36,7 @@
 qsf-dir.h: qsf-dir.h.in Makefile
 	rm -f $@.tmp
 	sed < $< > $@.tmp \
-	        -e 's:@-QSF_SCHEMA_DIR-@:${QOF_XML_DIR}:g'
+	        -e 's#@-QSF_SCHEMA_DIR-@#${QOF_XML_DIR}#g'
 	mv $@.tmp $@
 
 BUILT_SOURCES = qsf-dir.h

Modified: gnucash/trunk/lib/libqof/qof/Makefile.am
===================================================================
--- gnucash/trunk/lib/libqof/qof/Makefile.am	2006-08-22 19:26:10 UTC (rev 14710)
+++ gnucash/trunk/lib/libqof/qof/Makefile.am	2006-08-22 19:41:18 UTC (rev 14711)
@@ -90,7 +90,7 @@
 qofla-dir.h: $(srcdir)/qofla-dir.h.in Makefile
 	rm -f $@.tmp
 	sed < $< > $@.tmp \
-                -e 's:@-libdir-@:${QOFLIBdir}:g'
+                -e 's#@-libdir-@#${QOFLIBdir}#g'
 	 mv $@.tmp $@
 
 BUILT_SOURCES = qofla-dir.h

Modified: gnucash/trunk/src/engine/Makefile.am
===================================================================
--- gnucash/trunk/src/engine/Makefile.am	2006-08-22 19:26:10 UTC (rev 14710)
+++ gnucash/trunk/src/engine/Makefile.am	2006-08-22 19:41:18 UTC (rev 14711)
@@ -205,7 +205,7 @@
 gncla-dir.h: gncla-dir.h.in ${top_builddir}/config.status
 	rm -f $@.tmp
 	sed < $< > $@.tmp \
-                -e 's:@-libdir-@:${libdir}:g'
+                -e 's#@-libdir-@#${libdir}#g'
 	mv $@.tmp $@
 
 BUILT_SOURCES = iso-4217-currencies.c \

Modified: gnucash/trunk/src/scm/Makefile.am
===================================================================
--- gnucash/trunk/src/scm/Makefile.am	2006-08-22 19:26:10 UTC (rev 14710)
+++ gnucash/trunk/src/scm/Makefile.am	2006-08-22 19:41:18 UTC (rev 14711)
@@ -54,8 +54,8 @@
 build-config.scm: ${srcdir}/build-config.scm.in Makefile
 	rm -f $@.tmp
 	sed < $< > $@.tmp \
-            -e 's:@-VERSION-@:${VERSION}:' \
-            -e 's:@-GNC_HELPDIR-@:${GNC_HELPDIR}:'
+            -e 's#@-VERSION-@#${VERSION}#' \
+            -e 's#@-GNC_HELPDIR-@#${GNC_HELPDIR}#'
 	mv $@.tmp $@
 
 CLEANFILES = gnucash .scm-links



More information about the gnucash-changes mailing list