]> err.no Git - dpkg/commitdiff
Fix silly errors
authorWichert Akkerman <wakkerma@debian.org>
Sat, 9 Dec 2000 01:56:59 +0000 (01:56 +0000)
committerWichert Akkerman <wakkerma@debian.org>
Sat, 9 Dec 2000 01:56:59 +0000 (01:56 +0000)
Makefile.conf.in
configure.in

index edfbbbece553a5c2e9e532bd987bdcb0f5b10abc..bb5f9c9dba97e69e684db0d18d2db7292fdbebed 100644 (file)
@@ -62,8 +62,8 @@ NLS_LIBS              = @INTLLIBS@
 
 SSD_LIBS               = @SSD_LIBS@
 
-ZLIB_CFLAGS            = @ZLIBCFLAGS@
-ZLIB_LIBS              = @ZLIBLIBS@
+ZLIB_CFLAGS            = @ZLIB_CFLAGS@
+ZLIB_LIBS              = @ZLIB_LIBS@
 
 ALL_CFLAGS             = $(CFLAGS) $(DEFS) $(NLS_CFLAGS) $(INCLUDE_CFLAGS) $(ZLIB_CFLAGS)
 ALL_CXXFLAGS           = $(ALL_CFLAGS) $(CXXFLAGS)
index 54d309b26d966c19a09bf81e36262ea5077bd296..cf25d2d0e604c28b917ec209aa8b3c8934a7ad62 100644 (file)
@@ -133,13 +133,13 @@ AC_ARG_WITH(zlib,
 [  --with-zlib             use zlib for decompression of some gzip files],
        [use_zlib=$withval],
        [uze_zlib=no])
-if [ "$use_zlib" = "no" ] ; then
+if test "$use_zlib" = "no" ; then
        ZLIB_CFLAGS=
        ZLIB_LIBS=
 else
        ZLIB_CFLAGS=-DUSE_ZLIB
-       if [ "$use_zlib" = "static" ] ; then
-               ZLIB_LIBS=-Wl,-Bstatic -lz -Wl,-Bdynamic
+       if test "$use_zlib" = "static"  ; then
+               ZLIB_LIBS="-Wl,-Bstatic -lz -Wl,-Bdynamic"
        else
                ZLIB_LIBS=-lz
        fi