diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2012-04-29 18:23:46 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2012-04-29 19:20:05 -0700 |
commit | dbcdbf8c41db8d03e47fdbb0483f2705f8ac77f7 (patch) | |
tree | 6c4edfaea0139c196c525c09652c96a0edf0ee48 /configure | |
parent | 6c9bd474aa08312ef2e2e9655a80e18db24a1680 (diff) | |
download | zlib-dbcdbf8c41db8d03e47fdbb0483f2705f8ac77f7.tar.gz zlib-dbcdbf8c41db8d03e47fdbb0483f2705f8ac77f7.tar.bz2 zlib-dbcdbf8c41db8d03e47fdbb0483f2705f8ac77f7.zip |
Fix location of executable for finding a four-byte integer.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -716,7 +716,7 @@ int main() { | |||
716 | } | 716 | } |
717 | EOF | 717 | EOF |
718 | Z_U4="" | 718 | 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 |
720 | sed < zconf.h "/#define Z_U4/s/\/\* \.\/configure may/#define Z_U4 $Z_U4 \/* .\/configure put the/" > zconf.temp.h | 720 | sed < zconf.h "/#define Z_U4/s/\/\* \.\/configure may/#define Z_U4 $Z_U4 \/* .\/configure put the/" > zconf.temp.h |
721 | mv zconf.temp.h zconf.h | 721 | mv zconf.temp.h zconf.h |
722 | echo "Looking for a four-byte integer type... Found." | tee -a configure.log | 722 | echo "Looking for a four-byte integer type... Found." | tee -a configure.log |