[Box Backup-commit] COMMIT r2621 - box/trunk

subversion at boxbackup.org subversion at boxbackup.org
Thu Feb 18 18:14:36 GMT 2010


Author: chris
Date: 2010-02-18 18:14:36 +0000 (Thu, 18 Feb 2010)
New Revision: 2621

Modified:
   box/trunk/configure.ac
Log:
Pass target to sub-configure as well, for mingw, as boxi does to box 
backup.


Modified: box/trunk/configure.ac
===================================================================
--- box/trunk/configure.ac	2010-02-18 18:12:00 UTC (rev 2620)
+++ box/trunk/configure.ac	2010-02-18 18:14:36 UTC (rev 2621)
@@ -389,8 +389,10 @@
 		echo "Configuring $subdir..."
 		cd $subdir
 		export CC CXX CXXFLAGS LDFLAGS LIBS
-		if ! ./configure $configure_args; then
-			echo "Configuring $subdir failed!" >&2
+		args="$configure_args --target=$target_alias"
+		echo "Configuring $subdir with: $args"
+		if ! ./configure $args; then
+			echo "Configuring $subdir with $args failed!" >&2
 			exit 1
 		fi
 	fi




More information about the Boxbackup-commit mailing list