diff options
author | Nicholas Clark <nick@ccl4.org> | 2013-06-19 21:13:45 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2013-07-01 11:13:03 +0200 |
commit | b1343c5992fbc6e183c4dd851533181a7d0c63c5 (patch) | |
tree | 82ba3fbfb716ed79c56e05e28ac10e84b1ddda24 /Makefile.SH | |
parent | 344479a01ad9619a52172a45e64fa926abcf8955 (diff) | |
download | perl-b1343c5992fbc6e183c4dd851533181a7d0c63c5.tar.gz |
valgrind doesn't require that perl was built with -g, so remove the check.
C<make test.valgrind> will run quite happily on a perl built with
optimisation and without debugging symbols. So don't enforce -g.
Diffstat (limited to 'Makefile.SH')
-rwxr-xr-x | Makefile.SH | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Makefile.SH b/Makefile.SH index 9b8d73b5db..c1d31f4e7f 100755 --- a/Makefile.SH +++ b/Makefile.SH @@ -936,8 +936,6 @@ linux*|darwin*) # Valgrind perl (currently Linux, Darwin only) perl.valgrind.config: config.sh - @echo "To build perl.valgrind you must Configure -Doptimize=-g -Uusemymalloc, checking..." - @$(MAKE) perl.config.dashg @echo "Checking usemymalloc='n' in config.sh..." @grep "^usemymalloc=" config.sh @grep "^usemymalloc='n'" config.sh >/dev/null || exit 1 @@ -949,11 +947,6 @@ esac $spitshell >>$Makefile <<'!NO!SUBS!' -perl.config.dashg: - @echo "Checking optimize='-g' in config.sh..." - @grep "^optimize=" config.sh - @egrep "^optimize='(.*-g.*)'" config.sh >/dev/null || exit 1 - # Gprof Perl perl.config.dashpg: |