1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-24 21:50:20 +02:00

(guile-config): Use "|" as the sed delimiter, for the

benefit of DOS systems where $(bindir) might include a drive letter
like "c:".
This commit is contained in:
Kevin Ryde 2007-01-03 21:28:34 +00:00
parent 95764e4ce3
commit e6d8afb18a

View file

@ -1,7 +1,7 @@
## Process this file with Automake to create Makefile.in ## Process this file with Automake to create Makefile.in
## Jim Blandy <jimb@red-bean.com> --- September 1997 ## Jim Blandy <jimb@red-bean.com> --- September 1997
## ##
## Copyright (C) 1998, 1999, 2001, 2006 Free Software Foundation, Inc. ## Copyright (C) 1998, 1999, 2001, 2006, 2007 Free Software Foundation, Inc.
## ##
## This file is part of GUILE. ## This file is part of GUILE.
## ##
@ -35,7 +35,7 @@ aclocal_DATA = guile.m4
guile-config: guile-config.in ${top_builddir}/libguile/libpath.h guile-config: guile-config.in ${top_builddir}/libguile/libpath.h
rm -f guile-config.tmp rm -f guile-config.tmp
sed < ${srcdir}/guile-config.in > guile-config.tmp \ sed < ${srcdir}/guile-config.in > guile-config.tmp \
-e s:@-bindir-@:${bindir}: \ -e 's|@-bindir-@|${bindir}|' \
-e s:@-GUILE_VERSION-@:${GUILE_VERSION}: -e s:@-GUILE_VERSION-@:${GUILE_VERSION}:
chmod +x guile-config.tmp chmod +x guile-config.tmp
mv guile-config.tmp guile-config mv guile-config.tmp guile-config