[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
PATCH: Fix typo in cvs 1.12.1 aclocal.m4
From: |
Rainer Orth |
Subject: |
PATCH: Fix typo in cvs 1.12.1 aclocal.m4 |
Date: |
Mon, 16 Jun 2003 15:36:22 +0200 (MEST) |
Configuring cvs 1.12.1 with
--with-external-zlib=<dir>
failed due to a typo in aclocal.m4. The following trivial patch fixes
this.
Rainer
-----------------------------------------------------------------------------
Rainer Orth, Faculty of Technology, Bielefeld University
Mon Jun 16 15:32:27 2003 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* aclocal.m4 (ACX_WITH_EXTERNAL_ZLIB): Fix typo.
configure: Regenerate.
===================================================================
RCS file: RCS/aclocal.m4,v
retrieving revision 1.1
diff -up -r1.1 aclocal.m4
--- aclocal.m4 2003/05/25 14:32:29 1.1
+++ aclocal.m4 2003/06/16 13:32:12
@@ -1519,9 +1519,9 @@ if test x$with_external_zlib != xyes \
CPPFLAGS="$CPPFLAGS -I$with_external_zlib/include"
fi
if test -z "$LDFLAGS"; then
- LDFLAGS="-I$with_external_zlib/lib"
+ LDFLAGS="-L$with_external_zlib/lib"
else
- LDFLAGS="$LDFLAGS -I$with_external_zlib/lib"
+ LDFLAGS="$LDFLAGS -L$with_external_zlib/lib"
fi
fi
- PATCH: Fix typo in cvs 1.12.1 aclocal.m4,
Rainer Orth <=