diff options
author | H. Peter Anvin <hpa@zytor.com> | 1998-11-05 01:15:17 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 1998-11-05 01:15:17 +0000 |
commit | 0e136ff79b68a890261f18fdfc36e09cf94d871d (patch) | |
tree | d41e5963b183add18d1e01871c02cbb2f21c99a1 /man | |
parent | 8e618f6dcae16af89c1f997ea28818d2041be184 (diff) | |
download | autofs3-0e136ff79b68a890261f18fdfc36e09cf94d871d.tar.gz autofs3-0e136ff79b68a890261f18fdfc36e09cf94d871d.tar.xz autofs3-0e136ff79b68a890261f18fdfc36e09cf94d871d.zip |
Use | instead of / in the sed command since we're substituting a filename
Diffstat (limited to 'man')
-rw-r--r-- | man/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man/Makefile b/man/Makefile index bab0aef..e6f812a 100644 --- a/man/Makefile +++ b/man/Makefile @@ -8,7 +8,7 @@ GENFILES = $(patsubst %.in, %, $(wildcard *.[58].in)) .SUFFIXES: .in .in: - sed -e 's/@@INIT.D@@/$(initdir)/g' < $< > $@ + sed -e 's|@@INIT.D@@|$(initdir)|g' < $< > $@ all: $(GENFILES) |