summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Turner <david@freetype.org>2002-01-29 18:13:54 +0000
committerDavid Turner <david@freetype.org>2002-01-29 18:13:54 +0000
commit8ac794cf04eab00982ebdeade66d08aba218a997 (patch)
treee26f7da4a8d884cb65e7c244c77af462e4f4928a
parent43e5b1147dd2a931764eb77b30ca3aa0a284a221 (diff)
downloadfreetype2-8ac794cf04eab00982ebdeade66d08aba218a997.tar.gz
fixed the "configure" script in the top-level directory..
It didn't work correctly when several arguments were passed to it. For example, when typing: ./configure --disable-shared --prefix=/usr the "--prefix=/usr" was incorrectly sent to the "make" program..
-rw-r--r--ChangeLog10
-rw-r--r--configure2
2 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index f2ca2c909..58afebd46 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2002-01-29 David Turner <david@freetype.org>
+
+ * configure: fixed the script. it previously didn't accept more
+ than one argument correctly. For example, when typing:
+
+ ./configure --disable-shared --disable-nls
+
+ the "--disable-nls" was incorrectly sent to the "make" program..
+
+
2002-01-29 Werner Lemberg <wl@gnu.org>
* README.UNX: Fix typo.
diff --git a/configure b/configure
index 05de2a2c8..366c8bdd5 100644
--- a/configure
+++ b/configure
@@ -8,4 +8,4 @@
# Jamfile
# install
#
-make setup unix CFG="$@"
+CFG="$@" make setup unix