diff options
author | Hans Insulander <hin@cvs.openbsd.org> | 2000-05-01 23:31:47 +0000 |
---|---|---|
committer | Hans Insulander <hin@cvs.openbsd.org> | 2000-05-01 23:31:47 +0000 |
commit | ea69c872e48c9bbda2f421d7cb86f9bd9826d8aa (patch) | |
tree | 2cfc1a422fb84eea0e88a06547505b6692f8ef46 /gnu/usr.bin/lynx/makefile.in | |
parent | e67307f7a4e58973cb67b1a64527f94ff4e2eabf (diff) |
Make it compile even if exec-permissions are missing on cfg_defs.sh
and cfg_edit.sh.
Work by maja@, ok deraadt@
Diffstat (limited to 'gnu/usr.bin/lynx/makefile.in')
-rw-r--r-- | gnu/usr.bin/lynx/makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/lynx/makefile.in b/gnu/usr.bin/lynx/makefile.in index d18c00c2ea7..12787c48442 100644 --- a/gnu/usr.bin/lynx/makefile.in +++ b/gnu/usr.bin/lynx/makefile.in @@ -404,7 +404,7 @@ LYHelp.h : LYHelp.hin cfg_defs.h : $(srcdir)/cfg_defs.sh config.cache lynx_cfg.h @rm -f $@ - PATH=$(srcdir):$$PATH; export PATH; $(SHELL) -c '$(srcdir)/cfg_defs.sh' + PATH=$(srcdir):$$PATH; export PATH; $(SHELL) -c '$(SHELL) $(srcdir)/cfg_defs.sh' install-cfg : $(LIBDIR) -mv -f $(LIBDIR)/lynx.cfg $(LIBDIR)/lynx.oldcfg |