diff options
author | Perl 5 Porters <perl5-porters@africa.nicoh.com> | 1996-08-29 22:35:13 +0000 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1996-08-29 22:35:13 +0000 |
commit | 6b61c4b9177a24925f54523a094379ded91cf318 (patch) | |
tree | 85710c6757efbd6d9459d9a92e8e49b0c09d99df /hints/ultrix_4.sh | |
parent | 487a7f015b136c35583eb093393e72e2e288f682 (diff) | |
download | perl-6b61c4b9177a24925f54523a094379ded91cf318.tar.gz |
perl 5.003_04: hints/ultrix_4.sh
Don't call optimize=-g, just call optimize=none. The -g
pulls in -DDEBUGGING, which might not be wanted.
Diffstat (limited to 'hints/ultrix_4.sh')
-rw-r--r-- | hints/ultrix_4.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hints/ultrix_4.sh b/hints/ultrix_4.sh index e00450792d..76b0768f8d 100644 --- a/hints/ultrix_4.sh +++ b/hints/ultrix_4.sh @@ -4,9 +4,9 @@ # # Use Configure -Dcc=gcc to use gcc. # -# I don't know if -g is really needed. (AD) +# This used to use -g, but that pulls in -DDEBUGGING by default. case "$optimize" in -'') optimize=-g ;; +'') optimize='none' ;; esac # Some users have reported Configure runs *much* faster if you |