[Glibc-bsd-commits] r5069 - trunk/ufsutils/debian

Guillem Jover guillem at alioth.debian.org
Sat Oct 19 05:16:59 UTC 2013


Author: guillem
Date: 2013-10-19 05:16:58 +0000 (Sat, 19 Oct 2013)
New Revision: 5069

Modified:
   trunk/ufsutils/debian/changelog
   trunk/ufsutils/debian/rules
Log:
Only use the local sys partial headers hierarchy on non-kFreeBSD systems

Modified: trunk/ufsutils/debian/changelog
===================================================================
--- trunk/ufsutils/debian/changelog	2013-10-19 05:16:52 UTC (rev 5068)
+++ trunk/ufsutils/debian/changelog	2013-10-19 05:16:58 UTC (rev 5069)
@@ -21,6 +21,7 @@
     freebsd-buildutils for pmake.
   * Do not require root on the clean target.
   * Use «dpkg-parsechangelog -S» instead of sed-filtering the output.
+  * Only use the local sys partial headers hierarchy on non-kFreeBSD systems.
 
  -- Robert Millan <rmh at debian.org>  Thu, 08 Dec 2011 13:40:32 +0100
 

Modified: trunk/ufsutils/debian/rules
===================================================================
--- trunk/ufsutils/debian/rules	2013-10-19 05:16:52 UTC (rev 5068)
+++ trunk/ufsutils/debian/rules	2013-10-19 05:16:58 UTC (rev 5069)
@@ -24,10 +24,13 @@
 # as it would change size of ino_t.
 ifneq (kfreebsd,$(DEB_HOST_ARCH_OS))
 CFLAGS += -D_FILE_OFFSET_BITS=64
+
+# Only use the local sys partial headers hierarchy on non-kFreeBSD systems.
+CFLAGS += -I$(CURDIR)/sys
 endif
 
 CFLAGS += -I$(CURDIR)/lib/port -include port.h \
-          -I$(CURDIR)/sys -I$(CURDIR)/lib/libufs \
+          -I$(CURDIR)/lib/libufs \
           -D_GNU_SOURCE
 LDFLAGS += -L$(CURDIR)/lib/port -L$(CURDIR)/lib/libufs
 




More information about the Glibc-bsd-commits mailing list