Skip to content

Commit dbcdbf8

Browse files
committed
Fix location of executable for finding a four-byte integer.
1 parent 6c9bd47 commit dbcdbf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ int main() {
716716
}
717717
EOF
718718
Z_U4=""
719-
if try $CC $CFLAGS $test.c -o $test && Z_U4=`$test` && test -n "$Z_U4"; then
719+
if try $CC $CFLAGS $test.c -o $test && Z_U4=`./$test` && test -n "$Z_U4"; then
720720
sed < zconf.h "/#define Z_U4/s/\/\* \.\/configure may/#define Z_U4 $Z_U4 \/* .\/configure put the/" > zconf.temp.h
721721
mv zconf.temp.h zconf.h
722722
echo "Looking for a four-byte integer type... Found." | tee -a configure.log

0 commit comments

Comments
 (0)