From: Roland McGrath Date: Wed, 25 Nov 1998 01:31:40 +0000 (+0000) Subject: 1998-11-25 Roland McGrath X-Git-Tag: cvs/glibc-2_0_106~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=39f1b803ae1fb557fa141e5ab624bd3c4082c052;p=thirdparty%2Fglibc.git 1998-11-25 Roland McGrath * Makeconfig ($(common-objpfx)sysd-sorted): Use @ instead of / as sed s separator, since $(..) might contain a /. --- diff --git a/Makeconfig b/Makeconfig index f625f761083..2c13c2073c3 100644 --- a/Makeconfig +++ b/Makeconfig @@ -787,7 +787,7 @@ $(common-objpfx)sysd-sorted: $(..)scripts/gen-sorted.awk $(all-Depend-files) \ $(common-objpfx)sysd-dirs $(..)Makeconfig (files="$(all-Depend-files)"; \ for f in $$files; do \ - dir=`echo $$f | sed 's/^$(..)\(.*\)\/[^/]*$$/\1/'`; \ + dir=`echo $$f | sed 's@^$(..)\(.*\)/[^/]*$$@\1@'`; \ while read on; do \ echo "depend $$dir $$on"; \ done < $$f; \