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..
This commit is contained in:
David Turner 2002-01-29 18:13:54 +00:00
parent 12a8741e7b
commit 09c14ae7c8
2 changed files with 11 additions and 1 deletions

View File

@ -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.

2
configure vendored
View File

@ -8,4 +8,4 @@
# Jamfile
# install
#
make setup unix CFG="$@"
CFG="$@" make setup unix