r11158 - packages/trunk/boson/debian

Alexander Reichle-Schmehl tolimar at alioth.debian.org
Fri Jul 23 11:11:57 UTC 2010


Author: tolimar
Date: 2010-07-23 11:11:52 +0000 (Fri, 23 Jul 2010)
New Revision: 11158

Modified:
   packages/trunk/boson/debian/changelog
   packages/trunk/boson/debian/rules
Log:
Really fix mips* FTBFS?



Modified: packages/trunk/boson/debian/changelog
===================================================================
--- packages/trunk/boson/debian/changelog	2010-07-22 22:27:04 UTC (rev 11157)
+++ packages/trunk/boson/debian/changelog	2010-07-23 11:11:52 UTC (rev 11158)
@@ -1,6 +1,7 @@
-boson (0.13-8) UNRELEASED; urgency=low
+boson (0.13-8) unstable; urgency=low
 
-  * NOT RELEASED YET
+  * Aparently the || syntax isn't supported; make the mips* ifeq two sepperate block
+    (Closes: #587002)
 
  -- Alexander Reichle-Schmehl <tolimar at debian.org>  Thu, 22 Jul 2010 18:17:56 +0200
 

Modified: packages/trunk/boson/debian/rules
===================================================================
--- packages/trunk/boson/debian/rules	2010-07-22 22:27:04 UTC (rev 11157)
+++ packages/trunk/boson/debian/rules	2010-07-23 11:11:52 UTC (rev 11158)
@@ -13,10 +13,14 @@
 ifeq (hppa,$(DEB_BUILD_ARCH))
 ARCH_C_FLAGS=-mlong-calls
 ARCH_CXX_FLAGS=${ARCH_C_FLAGS}
-else
-ifeq (mips,$(DEB_BUILD_ARCH)) || (mipsel,$(DEB_BUILD_ARCH))
+endif
+
+ifeq (mips,$(DEB_BUILD_ARCH))
 CMAKE_FLAGS=-D CMAKE_C_COMPILER=gcc-4.3 -D CMAKE_CXX_COMPILER=g++-4.3
 endif
+
+ifeq (mipsel,$(DEB_BUILD_ARCH))
+CMAKE_FLAGS=-D CMAKE_C_COMPILER=gcc-4.3 -D CMAKE_CXX_COMPILER=g++-4.3
 endif
 
 




More information about the Pkg-games-commits mailing list