* builds/unix/freetype-config.in: Fix problems with separate

--prefix and --exec-prefix.


more robust handling of pathname wildcard matching.
This commit is contained in:
Werner Lemberg 2001-01-12 05:32:04 +00:00
parent b6c1bf861a
commit c7c2c91ad0
2 changed files with 19 additions and 12 deletions

View File

@ -1,7 +1,12 @@
2001-01-11 Matthew Crosby <mcrosby@marthon.org>
* builds/unix/freetype-config.in: Fix problems with separate
--prefix and --exec-prefix.
2001-01-11 David Turner <david.turner@freetype.org>
* docs/docmaker.py: Added cross-references generation as well as
more robust handling of pathname wildward matching
more robust handling of pathname wildcard matching.
2001-01-10 Werner Lemberg <wl@gnu.org>

View File

@ -2,7 +2,6 @@
prefix=@prefix@
exec_prefix=@exec_prefix@
exec_prefix_set=no
usage()
{
@ -23,7 +22,6 @@ if test $# -eq 0; then
usage 1 1>&2
fi
while test $# -gt 0; do
case "$1" in
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
@ -33,6 +31,7 @@ while test $# -gt 0; do
case $1 in
--prefix=*)
prefix=$optarg
local_prefix=yes
;;
--prefix)
echo_prefix=yes
@ -40,6 +39,7 @@ while test $# -gt 0; do
--exec-prefix=*)
exec_prefix=$optarg
exec_prefix_set=yes
local_prefix=yes
;;
--exec-prefix)
echo_exec_prefix=yes
@ -64,9 +64,11 @@ while test $# -gt 0; do
shift
done
if test "$exec_prefix_set" = "no"; then
if test "$local_prefix" = "yes" ; then
if test "$exec_prefix_set" != "yes"; then
exec_prefix=$prefix
fi
fi
if test "$echo_prefix" = "yes"; then
echo $prefix