1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
Description: Fix FTBFS on most architechtures
Origin: Debian
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=631647
--- a/build/autotools/dolt.m4
+++ b/build/autotools/dolt.m4
@@ -1,5 +1,5 @@
dnl dolt, a replacement for libtool
-dnl Copyright © 2007-2008 Josh Triplett <josh@freedesktop.org>
+dnl Copyright © 2007-2010 Josh Triplett <josh@joshtriplett.org>
dnl Copying and distribution of this file, with or without modification,
dnl are permitted in any medium without royalty provided the copyright
dnl notice and this notice are preserved.
@@ -22,7 +22,7 @@
dolt_supported=no
fi
case $host in
-i?86-*-linux*|x86_64-*-linux*|powerpc-*-linux* \
+*-*-linux* \
|amd64-*-freebsd*|i?86-*-freebsd*|ia64-*-freebsd*)
pic_options='-fPIC'
;;
@@ -155,7 +155,6 @@
tagok=false
for arg in "$[]@"; do
case "$arg" in
- --silent) ;;
--mode=compile) modeok=true ;;
--tag=CC|--tag=CXX) tagok=true ;;
*) args@<:@${#args[@]}@:>@="$arg" ;;
|