From: Angus Leeming Date: Wed, 23 Mar 2005 21:10:43 +0000 (+0000) Subject: Enable package.C to be built with Solaris sed. X-Git-Tag: 1.6.10~14452 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=c4fd0aa08d0d0490b1b1f3f46c7a9225dc34e98e;p=features.git Enable package.C to be built with Solaris sed. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9738 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/support/ChangeLog b/src/support/ChangeLog index 688b2a1f13..e38df86548 100644 --- a/src/support/ChangeLog +++ b/src/support/ChangeLog @@ -1,3 +1,8 @@ +2005-03-23 Angus Leeming + + * Makefile.am (build_package): Solaris sed does not like + spaces bewteen the ;-delimited commands. + 2005-02-25 Lars Gullik Bjonnes * Makefile.am (CLEANFILES): clean generated files diff --git a/src/support/Makefile.am b/src/support/Makefile.am index b3ab6dc1f4..a0e0576e3a 100644 --- a/src/support/Makefile.am +++ b/src/support/Makefile.am @@ -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 ;\