diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-03-18 19:37:46 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-03-18 19:37:46 +0000 |
commit | cc4efec9546c05b8d12a33b0fef6915a804ba903 (patch) | |
tree | 2632c3efe19faa081defc41a5dd406b179defa2a /Makefile.SH | |
parent | 7f01dc7a4234ca6b7fa5abbc363f1bad0c7b11b9 (diff) | |
download | perl-cc4efec9546c05b8d12a33b0fef6915a804ba903.tar.gz |
Make perl.third checks more understandable to the builder.
p4raw-id: //depot/perl@9204
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.SH b/Makefile.SH index a2cb1a201e..7747d6cb5f 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -507,8 +507,12 @@ quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs perl.third.config: config.sh @echo "To build perl.third you must Configure -Doptimize=-g -Uusemymalloc, checking..." - @grep "^optimize='-g'" config.sh || exit 1 - @grep "^usemymalloc='n'" config.sh || exit 1 + @echo "Checking optimize='-g'..." + @grep "^optimize=" config.sh + @grep -q "^optimize='-g'" config.sh || exit 1 + @echo "Checking usemymalloc='n'..." + @grep "^usemymalloc=" config.sh + @grep -q "^usemymalloc='n'" config.sh || exit 1 perl.third: /usr/bin/atom perl.third.config perl atom -tool third -L. -all -gp -toolargs="-quiet -invalid -uninit heap+stack+partword+copy -min 0" perl |