filename in .so directive must not have quotes; patch from jos@xos.nl

This commit is contained in:
Paul Slootman 1998-11-09 11:45:40 +00:00
parent 5181501ce8
commit 11b905bbdd
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ config.status: configure
%.8: %.man
ifdef CONFIG_ISDNCTRL_CONF
cat $< | sed -e 's%@MANINC@%.so%' -e "s%@MAN8DIR@%$(MAN8DIR)%" > $@
cat $< | sed -e 's%@MANINC@%.so%' -e "s%@MAN8DIR@%$(MAN8DIR)%" -e "/^\.so/s/'//g" > $@
else
cat $< | sed -e 's%@MANINC@%.\\\"%' -e "s%@MAN8DIR@%$(MAN8DIR)%" > $@
endif