Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
4095101c
Commit
4095101c
authored
Oct 07, 2000
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Put arguments to test -z in double quotes. Fixes Bug #116325.
parent
77878413
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
configure
configure
+4
-4
configure.in
configure.in
+3
-3
No files found.
configure
View file @
4095101c
#! /bin/sh
# From configure.in Revision: 1.16
6
# From configure.in Revision: 1.16
8
# Guess values for system-dependent variables and create Makefiles.
# Generated automatically using autoconf version 2.13
...
...
@@ -3102,10 +3102,10 @@ if test "$with_threads" = "no"
then
USE_THREAD_MODULE
=
"#"
else
if
test
!
-z
$with_threads
-a
-d
$with_threads
if
test
!
-z
"
$with_threads
"
-a
-d
"
$with_threads
"
then
LDFLAGS
=
"
$LDFLAGS
-L
$with_threads
"
fi
if
test
!
-z
$withval
-a
-d
$withval
if
test
!
-z
"
$withval
"
-a
-d
"
$withval
"
then
LDFLAGS
=
"
$LDFLAGS
-L
$withval
"
fi
cat
>>
confdefs.h
<<
\
EOF
...
...
@@ -3782,7 +3782,7 @@ EOF
DYNLOADFILE
=
"dynload_dl.o"
dldir
=
$withval
if
test
!
-z
$dldir
-a
-d
$dldir
if
test
!
-z
"
$dldir
"
-a
-d
"
$dldir
"
then
LDFLAGS
=
"
$LDFLAGS
-L
$dldir
"
else
{
echo
"configure: error: proper usage is --with-sgi-dl=DIRECTORY"
1>&2
;
exit
1
;
}
fi
...
...
configure.in
View file @
4095101c
...
...
@@ -750,10 +750,10 @@ if test "$with_threads" = "no"
then
USE_THREAD_MODULE="#"
else
if test ! -z
$with_threads -a -d $with_threads
if test ! -z
"$with_threads" -a -d "$with_threads"
then LDFLAGS="$LDFLAGS -L$with_threads"
fi
if test ! -z
$withval -a -d $withval
if test ! -z
"$withval" -a -d "$withval"
then LDFLAGS="$LDFLAGS -L$withval"
fi
AC_DEFINE(_REENTRANT)
...
...
@@ -889,7 +889,7 @@ AC_MSG_RESULT($withval)
AC_DEFINE(WITH_SGI_DL)
DYNLOADFILE="dynload_dl.o"
dldir=$withval
if test ! -z
$dldir -a -d $dldir
if test ! -z
"$dldir" -a -d "$dldir"
then LDFLAGS="$LDFLAGS -L$dldir"
else AC_ERROR(proper usage is --with-sgi-dl=DIRECTORY)
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment