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.in | |
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.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 25f8c67..2deb753 100644 --- a/configure.in +++ b/configure.in @@ -212,11 +212,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 |