From e6d8afb18a26c064c1ec57f1572f4e2923a09ab2 Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Wed, 3 Jan 2007 21:28:34 +0000 Subject: [PATCH] (guile-config): Use "|" as the sed delimiter, for the benefit of DOS systems where $(bindir) might include a drive letter like "c:". --- guile-config/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guile-config/Makefile.am b/guile-config/Makefile.am index be61fcdba..4a2d9ba4f 100644 --- a/guile-config/Makefile.am +++ b/guile-config/Makefile.am @@ -1,7 +1,7 @@ ## Process this file with Automake to create Makefile.in ## Jim Blandy --- 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. ## @@ -35,7 +35,7 @@ aclocal_DATA = guile.m4 guile-config: guile-config.in ${top_builddir}/libguile/libpath.h rm -f 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}: chmod +x guile-config.tmp mv guile-config.tmp guile-config