From dbcdbf8c41db8d03e47fdbb0483f2705f8ac77f7 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Sun, 29 Apr 2012 18:23:46 -0700 Subject: Fix location of executable for finding a four-byte integer. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 6baa34f..0c97d7b 100755 --- a/configure +++ b/configure @@ -716,7 +716,7 @@ int main() { } EOF Z_U4="" -if try $CC $CFLAGS $test.c -o $test && Z_U4=`$test` && test -n "$Z_U4"; then +if try $CC $CFLAGS $test.c -o $test && Z_U4=`./$test` && test -n "$Z_U4"; then sed < zconf.h "/#define Z_U4/s/\/\* \.\/configure may/#define Z_U4 $Z_U4 \/* .\/configure put the/" > zconf.temp.h mv zconf.temp.h zconf.h echo "Looking for a four-byte integer type... Found." | tee -a configure.log -- cgit v1.2.3-55-g6feb