summaryrefslogtreecommitdiff
path: root/configure
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
commit09c14ae7c863b6fab22c4ba55f0a57f44abbafea (patch)
treee26f7da4a8d884cb65e7c244c77af462e4f4928a /configure
parent12a8741e7ba0e7b6d1f5ca0a6dd5ddb29a19b691 (diff)
downloadfreetype2-09c14ae7c863b6fab22c4ba55f0a57f44abbafea.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..
Diffstat (limited to 'configure')
-rw-r--r--configure2
1 files changed, 1 insertions, 1 deletions
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