diff options
author | Guido van Rossum <guido@python.org> | 1998-02-19 21:32:40 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-02-19 21:32:40 (GMT) |
commit | 357428567c7b230f649924a5761c9cdfed5259a0 (patch) | |
tree | 9397160f4be5f32ca045a23ff84bd580549b5092 /configure | |
parent | 64a1090d1bcce8bfa52363dc7d02d05885b0606e (diff) | |
download | cpython-357428567c7b230f649924a5761c9cdfed5259a0.zip cpython-357428567c7b230f649924a5761c9cdfed5259a0.tar.gz cpython-357428567c7b230f649924a5761c9cdfed5259a0.tar.bz2 |
Different way to suppores the DGUX rule
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ #! /bin/sh -# From configure.in Revision: 1.76 +# From configure.in Revision: 1.77 # Guess values for system-dependent variables and create Makefiles. # Generated automatically using autoconf version 2.12 @@ -1178,11 +1178,11 @@ if test $ac_cv_opt_olimit_ok = yes; then OPT="$OPT -OPT:Olimit=0" fi REALLIBRARY='libpython$(VERSION).a' - DGUX_IS_BROKEN="# dgux rule not included" + DGUX_IS_BROKEN="true" else REALLIBRARY='libpython$(VERSION).so' OPT="$OPT -pic" - DGUX_IS_BROKEN=" make $REALLIBRARY" + DGUX_IS_BROKEN="make $REALLIBRARY" fi # check for ANSI or K&R ("traditional") preprocessor |