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

Guillem Jover guillem at alioth.debian.org
Wed Oct 9 05:53:22 UTC 2013


Author: guillem
Date: 2013-10-09 05:53:22 +0000 (Wed, 09 Oct 2013)
New Revision: 5023

Modified:
   trunk/ufsutils/debian/changelog
   trunk/ufsutils/debian/rules
Log:
Reword warning about not enabling _FILE_OFFSET_BITS=64 on GNU/kFreeBSD

Fix typos, and remove repeated text.

Modified: trunk/ufsutils/debian/changelog
===================================================================
--- trunk/ufsutils/debian/changelog	2013-10-09 05:53:17 UTC (rev 5022)
+++ trunk/ufsutils/debian/changelog	2013-10-09 05:53:22 UTC (rev 5023)
@@ -15,6 +15,8 @@
   * Add install and install-indep targets for consistency.
   * Add -Werror=implicit-function-declaration to build flags.
   * Remove unneeded debian/ufsutils.dirs file.
+  * Reword warning about not enabling _FILE_OFFSET_BITS=64 on GNU/kFreeBSD,
+    fix typos, and remove repeated text.
 
  -- 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-09 05:53:17 UTC (rev 5022)
+++ trunk/ufsutils/debian/rules	2013-10-09 05:53:22 UTC (rev 5023)
@@ -17,11 +17,9 @@
 LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS) \
            $(shell pkg-config --libs libbsd-overlay)
 
-# GNU/kFreeBSD already have off_t 64bit. It must not be enabled,
-# as it would change size of ino_t
+# Note: GNU/kFreeBSD already has a 64-bit off_t. It must not be enabled,
+# as it would change size of ino_t.
 ifneq (kfreebsd,$(DEB_HOST_ARCH_OS))
-# really only on other systems, as GNU/kFreeBSD already have off_t 64bit
-# on GNU/kFreeBSD it must not be enabled, as it would change size of ino_t
 CFLAGS += -D_FILE_OFFSET_BITS=64
 endif
 




More information about the Glibc-bsd-commits mailing list