diff options
author | Paul Eggert <eggert@sea.sm.unisys.com> | 1988-01-25 19:48:31 +0000 |
---|---|---|
committer | Larry Wall <lwall@jpl-devvax.jpl.nasa.gov> | 1988-01-25 19:48:31 +0000 |
commit | fdf95cbbc2acfbfc754558cc084039bd434df8d8 (patch) | |
tree | ca8498b0bdc5e23f74985474dfa11d4ba324d76c /Makefile.SH | |
parent | c51b80d12add5c11444f7eebea3d6e95eea37237 (diff) | |
download | perl-fdf95cbbc2acfbfc754558cc084039bd434df8d8.tar.gz |
perl 1.0 patch 4: make depend doesn't work if . isn't in your PATH
make depend doesn't work if . isn't in your PATH.
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.SH b/Makefile.SH index 7814bd92e0..798d9a36b5 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -14,9 +14,12 @@ case "$0" in esac echo "Extracting Makefile (with variable substitutions)" cat >Makefile <<!GROK!THIS! -# $Header: Makefile.SH,v 1.0.1.1 88/01/24 03:55:18 root Exp $ +# $Header: Makefile.SH,v 1.0.1.2 88/01/26 08:46:04 root Exp $ # # $Log: Makefile.SH,v $ +# Revision 1.0.1.2 88/01/26 08:46:04 root +# patch 4: make depend didn't work right if . wasn't in PATH. +# # Revision 1.0.1.1 88/01/24 03:55:18 root # patch 2: remove extra Log lines. # @@ -137,7 +140,7 @@ lint: lint $(lintflags) $(defs) $(c) > perl.fuzz depend: makedepend - makedepend + ./makedepend test: perl chmod 755 t/TEST t/base.* t/comp.* t/cmd.* t/io.* t/op.* |