Commit 348ca948 authored by Martin v. Löwis's avatar Martin v. Löwis

Fix if-then-else-fi structure.

parent 8a360969
#! /bin/sh
# From configure.in Revision: 1.375 .
# From configure.in Revision: 1.376 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.53 for python 2.3.
#
......@@ -11654,9 +11654,10 @@ if test -z "$with_universal_newlines"
then with_universal_newlines="yes"
fi
if test "$with_universal_newlines" = "no"
then
echo --without-universal-newlines is unsupported, see README
exit 1
then
else
cat >>confdefs.h <<\_ACEOF
#define WITH_UNIVERSAL_NEWLINES 1
......
......@@ -1607,9 +1607,10 @@ if test -z "$with_universal_newlines"
then with_universal_newlines="yes"
fi
if test "$with_universal_newlines" = "no"
then
echo --without-universal-newlines is unsupported, see README
exit 1
then
else
AC_DEFINE(WITH_UNIVERSAL_NEWLINES, 1,
[Define if you want to read files with foreign newlines.])
fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment