summaryrefslogtreecommitdiff
path: root/Makeconfig
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1998-11-25 01:31:40 +0000
committerRoland McGrath <roland@gnu.org>1998-11-25 01:31:40 +0000
commit39f1b803ae1fb557fa141e5ab624bd3c4082c052 (patch)
tree9f8af67eb907067939bf59ae464209689a687d83 /Makeconfig
parent45b3d8ad2abd87de93f7446641469ca46fcc19bc (diff)
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--Makeconfig2
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; \