Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 03d00d5

Browse files
committed
Fix if-then-else-fi structure.
1 parent ee65e22 commit 03d00d5

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

configure

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /bin/sh
2-
# From configure.in Revision: 1.375 .
2+
# From configure.in Revision: 1.376 .
33
# Guess values for system-dependent variables and create Makefiles.
44
# Generated by GNU Autoconf 2.53 for python 2.3.
55
#
@@ -11654,9 +11654,10 @@ if test -z "$with_universal_newlines"
1165411654
then with_universal_newlines="yes"
1165511655
fi
1165611656
if test "$with_universal_newlines" = "no"
11657+
then
1165711658
echo --without-universal-newlines is unsupported, see README
1165811659
exit 1
11659-
then
11660+
else
1166011661
1166111662
cat >>confdefs.h <<\_ACEOF
1166211663
#define WITH_UNIVERSAL_NEWLINES 1

configure.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1607,9 +1607,10 @@ if test -z "$with_universal_newlines"
16071607
then with_universal_newlines="yes"
16081608
fi
16091609
if test "$with_universal_newlines" = "no"
1610+
then
16101611
echo --without-universal-newlines is unsupported, see README
16111612
exit 1
1612-
then
1613+
else
16131614
AC_DEFINE(WITH_UNIVERSAL_NEWLINES, 1,
16141615
[Define if you want to read files with foreign newlines.])
16151616
fi

0 commit comments

Comments
 (0)