diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-01-24 17:10:08 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-01-24 17:10:08 +0000 |
commit | 16ad9bfac1f54be805ef4a486e9f58be56a4dcc1 (patch) | |
tree | 45674a50b6d5c376789d3923fb044618661961c6 /Makefile.SH | |
parent | 6ef6dcadfcaedc67da16606d65837aaaaf396221 (diff) | |
download | perl-16ad9bfac1f54be805ef4a486e9f58be56a4dcc1.tar.gz |
The exit code of make_patchnum.pl is no longer used, so make it return 0.
Remove special-casing from all the makefiles that coped with it returning non-0.
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.SH b/Makefile.SH index 6626e59c07..d601254a94 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -530,7 +530,7 @@ all: $(FIRSTMAKEFILE) miniperl$(EXE_EXT) miniperl extra.pods $(private) $(unidat .PHONY: all translators utilities git_version.h: miniperl$(EXE_EXT) make_patchnum.pl - -$(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_patchnum.pl + $(LDLIBPTH) $(RUN) ./miniperl$(EXE_EXT) -Ilib make_patchnum.pl # make sure that we recompile perl.c if the git version changes perl$(OBJ_EXT): git_version.h |