[Glibc-bsd-commits] r3346 - trunk/freebsd-buildutils/debian
Guillem Jover
guillem at alioth.debian.org
Sun May 29 19:18:34 UTC 2011
Author: guillem
Date: 2011-05-29 19:18:34 +0000 (Sun, 29 May 2011)
New Revision: 3346
Modified:
trunk/freebsd-buildutils/debian/changelog
trunk/freebsd-buildutils/debian/rules
Log:
Line-wrap CFLAGS variable in debian/rule
Modified: trunk/freebsd-buildutils/debian/changelog
===================================================================
--- trunk/freebsd-buildutils/debian/changelog 2011-05-29 19:18:10 UTC (rev 3345)
+++ trunk/freebsd-buildutils/debian/changelog 2011-05-29 19:18:34 UTC (rev 3346)
@@ -22,6 +22,7 @@
correct paths for i386 based architectures.
- Add builtin MACHINE_MULTIARCH make variable.
* Refactor source and tar name into SOURCE and TARNAME in debian/rules.
+ * Line-wrap CFLAGS variable in debian/rules.
-- Robert Millan <rmh at debian.org> Thu, 13 Jan 2011 18:29:12 +0100
Modified: trunk/freebsd-buildutils/debian/rules
===================================================================
--- trunk/freebsd-buildutils/debian/rules 2011-05-29 19:18:10 UTC (rev 3345)
+++ trunk/freebsd-buildutils/debian/rules 2011-05-29 19:18:34 UTC (rev 3346)
@@ -27,7 +27,10 @@
ORIGDIR = $(SOURCE)-$(VERSION)
TARNAME = $(SOURCE)_$(VERSION).orig.tar.gz
-CFLAGS = -O2 -g -Wall -DMACHINE_ARCH='"$(DEB_HOST_ARCH_CPU)"' -DMACHINE_MULTIARCH='"$(DEB_HOST_MULTIARCH)"' -D_GNU_SOURCE -D'__FBSDID(string)=' -I$(CURDIR)/build-tree/src/sys
+CFLAGS = -O2 -g -Wall -D_GNU_SOURCE -D'__FBSDID(string)=' \
+ -DMACHINE_ARCH='"$(DEB_HOST_ARCH_CPU)"' \
+ -DMACHINE_MULTIARCH='"$(DEB_HOST_MULTIARCH)"' \
+ -I$(CURDIR)/build-tree/src/sys
MAKE_BUILD_FLAGS = CC=gcc NO_WERROR=1 NOGCCERROR=1 NOSHARED=NO NO_SHARED=NO
PMAKE_BOOTSTRAP = $(CURDIR)/build-tree/src/usr.bin/make/pmake
More information about the Glibc-bsd-commits
mailing list