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

Skip to content

Commit 9ef3376

Browse files
committed
Avoid semicolon usage in echo.
1 parent 779ffc0 commit 9ef3376

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

configure

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /bin/sh
2-
# From configure.in Revision: 1.372 .
2+
# From configure.in Revision: 1.373 .
33
# Guess values for system-dependent variables and create Makefiles.
44
# Generated by GNU Autoconf 2.53 for python 2.3.
55
#
@@ -11750,7 +11750,7 @@ if test "${with_sgi_dl+set}" = set; then
1175011750
1175111751
echo "$as_me:$LINENO: result: $withval" >&5
1175211752
echo "${ECHO_T}$withval" >&6
11753-
echo --with-sgi-dl is unsupported; see README
11753+
echo --with-sgi-dl is unsupported, see README
1175411754
exit 1
1175511755
1175611756
cat >>confdefs.h <<\_ACEOF
@@ -11781,7 +11781,7 @@ if test "${with_dl_dld+set}" = set; then
1178111781
1178211782
echo "$as_me:$LINENO: result: $withval" >&5
1178311783
echo "${ECHO_T}$withval" >&6
11784-
echo --with-dl-dld is unsupported; see README
11784+
echo --with-dl-dld is unsupported, see README
1178511785
exit 1
1178611786
1178711787
cat >>confdefs.h <<\_ACEOF

configure.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1667,7 +1667,7 @@ AC_ARG_WITH(sgi-dl,
16671667
AC_HELP_STRING(--with-sgi-dl=DIRECTORY, IRIX 4 dynamic linking),
16681668
[
16691669
AC_MSG_RESULT($withval)
1670-
echo --with-sgi-dl is unsupported; see README
1670+
echo --with-sgi-dl is unsupported, see README
16711671
exit 1
16721672
AC_DEFINE(WITH_SGI_DL, 1,
16731673
[Define if you want to use SGI (IRIX 4) dynamic linking.
@@ -1689,7 +1689,7 @@ AC_ARG_WITH(dl-dld,
16891689
AC_HELP_STRING(--with-dl-dld=DL_DIR, GNU dynamic linking),
16901690
[
16911691
AC_MSG_RESULT($withval)
1692-
echo --with-dl-dld is unsupported; see README
1692+
echo --with-dl-dld is unsupported, see README
16931693
exit 1
16941694
AC_DEFINE(WITH_DL_DLD, 1,
16951695
[Define if you want to emulate SGI (IRIX 4) dynamic linking.

0 commit comments

Comments
 (0)