diff options
author | H. Peter Anvin <hpa@zytor.com> | 1999-03-07 22:57:12 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 1999-03-07 22:57:12 +0000 |
commit | 62dc9a87942bb144aaaab809bf9f8844ff84d293 (patch) | |
tree | 8d50d17a511c93e757884cac8c2211e3dbea21f7 | |
parent | 78d7fc3d00af5a54191296aa8e9b898869821f7c (diff) | |
download | autofs3-62dc9a87942bb144aaaab809bf9f8844ff84d293.tar.gz autofs3-62dc9a87942bb144aaaab809bf9f8844ff84d293.tar.xz autofs3-62dc9a87942bb144aaaab809bf9f8844ff84d293.zip |
// is not a good separator in sed when the data is filenames
-rw-r--r-- | samples/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/Makefile b/samples/Makefile index 30d57ab..235ec91 100644 --- a/samples/Makefile +++ b/samples/Makefile @@ -16,4 +16,4 @@ install: all install -c rc.autofs -m 755 $(INSTALLROOT)$(initdir)/autofs rc.autofs: rc.autofs.in - sed -e "s/@@sbindir@@/$(sbindir)/g" < rc.autofs.in > rc.autofs + sed -e "s|@@sbindir@@|$(sbindir)|g" < rc.autofs.in > rc.autofs |