summaryrefslogtreecommitdiff
path: root/meta
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-03-25 22:27:37 +0100
committerLudovic Courtès <ludo@gnu.org>2013-03-25 22:27:37 +0100
commit570fdeceacaad7f6e928123f40e8bb5f72677dcb (patch)
tree0baa7b2d6fb297c10ea16a6bad9e3e5d10fc1d0c /meta
parent11ed42771dec06626457eae58f2f334df1397f72 (diff)
build: Use portable sed constructs.
Partly fixes <http://bugs.gnu.org/14042>. Reported by Marc Girod <marc.girod@gmail.com>. * meta/Makefile.am (guile-config): Use separate "s" expressions to accommodate Solaris sed.
Diffstat (limited to 'meta')
-rw-r--r--meta/Makefile.am10
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/Makefile.am b/meta/Makefile.am
index bd2078409..5a96e0e8b 100644
--- a/meta/Makefile.am
+++ b/meta/Makefile.am
@@ -2,7 +2,7 @@
## Jim Blandy <jimb@red-bean.com> --- September 1997
##
## Copyright (C) 1998, 1999, 2001, 2006, 2007, 2008, 2009, 2011,
-## 2012 Free Software Foundation, Inc.
+## 2012, 2013 Free Software Foundation, Inc.
##
## This file is part of GUILE.
##
@@ -46,10 +46,10 @@ aclocal_DATA = guile.m4
guile-config: $(srcdir)/guile-config.in $(top_builddir)/config.status
guile="@bindir@/`echo guile | $(SED) -e '$(program_transform_name)'`" ; \
- cat $(srcdir)/guile-config.in \
- | $(SED) -e "s,@pkgconfigdir@,$(pkgconfigdir),g ; \
- s,@""PKG_CONFIG@,$(PKG_CONFIG),g ; \
- s,@installed_guile@,$$guile,g" \
+ cat $(srcdir)/guile-config.in \
+ | $(SED) -e "s,@pkgconfigdir@,$(pkgconfigdir),g" \
+ -e "s,@""PKG_CONFIG@,$(PKG_CONFIG),g" \
+ -e "s,@installed_guile@,$$guile,g" \
> guile-config.out
mv guile-config.out guile-config
chmod +x guile-config