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 /win32 | |
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 'win32')
-rw-r--r-- | win32/Makefile | 4 | ||||
-rw-r--r-- | win32/makefile.mk | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/win32/Makefile b/win32/Makefile index 409ca9168b..467944d8c6 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -877,11 +877,9 @@ config.w32 : $(CFGSH_TMPL) -del /f config.h copy $(CFGH_TMPL) config.h -# ignore "errors" from make_patchnum.pl (it exits with status 1 when -# not rewriting its output files) make_patchnum : $(MINIPERL) cd .. - -miniperl -Ilib make_patchnum.pl + miniperl -Ilib make_patchnum.pl cd win32 ..\git_version.h : ..\stock_git_version.h diff --git a/win32/makefile.mk b/win32/makefile.mk index 9814d92d3d..f73670ee30 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -1125,10 +1125,8 @@ config.w32 : $(CFGSH_TMPL) -del /f config.h copy $(CFGH_TMPL) config.h -# ignore "errors" from make_patchnum.pl (it exits with status 1 when -# not rewriting its output files) make_patchnum : $(MINIPERL) - -cd .. && miniperl -Ilib make_patchnum.pl + cd .. && miniperl -Ilib make_patchnum.pl ..\git_version.h : ..\stock_git_version.h -del /f ..\git_version.h |