[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r2738 - glibc-package/trunk/debian



Author: aurel32
Date: 2007-12-08 12:15:46 +0000 (Sat, 08 Dec 2007)
New Revision: 2738

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/rules
Log:
  * debian/rules: also set CXX when cross-compiling. 



Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2007-12-08 11:35:19 UTC (rev 2737)
+++ glibc-package/trunk/debian/changelog	2007-12-08 12:15:46 UTC (rev 2738)
@@ -7,8 +7,9 @@
     ether_line().  Closes: bug#453899.
   * patches/any/cvs-vfscanf.diff: new patch from upstream to fix
     crash when %as is used with sscanf().  Closes: bug#453408.
+  * debian/rules: also set CXX when cross-compiling. 
 
- -- Aurelien Jarno <aurel32@debian.org>  Sat, 08 Dec 2007 12:32:40 +0100
+ -- Aurelien Jarno <aurel32@debian.org>  Sat, 08 Dec 2007 13:15:54 +0100
 
 glibc (2.7-4) unstable; urgency=low
 

Modified: glibc-package/trunk/debian/rules
===================================================================
--- glibc-package/trunk/debian/rules	2007-12-08 11:35:19 UTC (rev 2737)
+++ glibc-package/trunk/debian/rules	2007-12-08 12:15:46 UTC (rev 2738)
@@ -97,11 +97,13 @@
 
 TIMEOUTFACTOR = 1
 
-# Set CC for cross-compiling
+# Set CC and CXX for cross-compiling
 ifneq ($(DEB_HOST_ARCH),$(DEB_BUILD_ARCH))
 CC     = $(DEB_HOST_GNU_TYPE)-gcc
+CXX    = $(DEB_HOST_GNU_TYPE)-g++
 else
 CC     = $(BUILD_CC)
+CXX    = $(BUILD_CXX)
 endif
 
 BUILD_CFLAGS = -O2 -g



Reply to: