shithub: freetype+ttf2subf

Download patch

ref: 09c14ae7c863b6fab22c4ba55f0a57f44abbafea
parent: 12a8741e7ba0e7b6d1f5ca0a6dd5ddb29a19b691
author: David Turner <[email protected]>
date: Tue Jan 29 13:13:54 EST 2002

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

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2002-01-29  David Turner  <[email protected]>
+
+	* 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  <[email protected]>
 
 	* README.UNX: Fix typo.
--- a/configure
+++ b/configure
@@ -8,4 +8,4 @@
 #   Jamfile
 #   install
 #
-make setup unix CFG="$@"
+CFG="$@" make setup unix