diff options
author | Roland McGrath <roland@gnu.org> | 1998-11-25 01:31:40 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1998-11-25 01:31:40 +0000 |
commit | 39f1b803ae1fb557fa141e5ab624bd3c4082c052 (patch) | |
tree | 9f8af67eb907067939bf59ae464209689a687d83 /Makeconfig | |
parent | 45b3d8ad2abd87de93f7446641469ca46fcc19bc (diff) | |
download | glibc-39f1b803ae1fb557fa141e5ab624bd3c4082c052.tar.gz glibc-39f1b803ae1fb557fa141e5ab624bd3c4082c052.tar.xz glibc-39f1b803ae1fb557fa141e5ab624bd3c4082c052.zip |
1998-11-25 Roland McGrath <roland@baalperazim.frob.com>
* Makeconfig ($(common-objpfx)sysd-sorted): Use @ instead of / as sed s separator, since $(..) might contain a /.
Diffstat (limited to 'Makeconfig')
-rw-r--r-- | Makeconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makeconfig b/Makeconfig index f625f76108..2c13c2073c 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; \ |