]> git.lyx.org Git - features.git/commitdiff
Enable package.C to be built with Solaris sed.
authorAngus Leeming <leeming@lyx.org>
Wed, 23 Mar 2005 21:10:43 +0000 (21:10 +0000)
committerAngus Leeming <leeming@lyx.org>
Wed, 23 Mar 2005 21:10:43 +0000 (21:10 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9738 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/ChangeLog
src/support/Makefile.am

index 688b2a1f13d135d69ecb0e92b405242ef13391b1..e38df865484da2d483f61d9b624a8f65e20cdda4 100644 (file)
@@ -1,3 +1,8 @@
+2005-03-23  Angus Leeming  <leeming@lyx.org>
+
+       * Makefile.am (build_package): Solaris sed does not like
+       spaces bewteen the ;-delimited commands.
+
 2005-02-25  Lars Gullik Bjonnes  <larsbj@gullik.net>
 
        * Makefile.am (CLEANFILES): clean generated files
index b3ab6dc1f4a0bc745a996b81604c47b837adfa6d..a0e0576e3a099278ae1136c13b5d6b6553d96d30 100644 (file)
@@ -83,13 +83,14 @@ libsupport_la_SOURCES = \
 
 package.C: build_package
 
+# Solaris sed does not like spaces bewteen the ;-delimited commands
 build_package: package.C.in
        @rm -f tmp_package ;\
        ABS_SRCDIR=`cd $(top_srcdir) && pwd` ;\
        ABS_BUILDDIR=`cd ../.. && pwd` ;\
-       sed "s,%LYX_DIR%,$(pkgdatadir), ;\
-               s,%LOCALEDIR%,$(datadir)/locale, ;\
-               s,%TOP_SRCDIR%,$${ABS_SRCDIR}," \
+       sed "s,%LYX_DIR%,$(pkgdatadir),;\
+s,%LOCALEDIR%,$(datadir)/locale,;\
+s,%TOP_SRCDIR%,$${ABS_SRCDIR}," \
                $(srcdir)/package.C.in > tmp_package ;\
        if cmp -s tmp_package package.C ; then \
                rm -f tmp_package ;\