]> git.deb.at Git - pkg/mmv.git/commitdiff
Add the output of "getconf LFS_CFLAGS" to CFLAGS
authorAxel Beckert <abe@deuxchevaux.org>
Fri, 13 Sep 2013 19:33:42 +0000 (21:33 +0200)
committerAxel Beckert <abe@deuxchevaux.org>
Fri, 13 Sep 2013 19:33:42 +0000 (21:33 +0200)
Makes LFS support working (again?)  on 32-bit (or at least i386).

Closes #722709 and fixes lintian warning
binary-file-built-without-LFS-support.

debian/changelog
debian/rules

index e9a716fc2958c9694f9bc28331786a71959b88b7..d9581eb97072c1353b676ce5d15e9b6a4ff0b285 100644 (file)
@@ -1,5 +1,9 @@
 mmv (1.01b-18) UNRELEASED; urgency=low
 
 mmv (1.01b-18) UNRELEASED; urgency=low
 
+  * Make LFS support working on 32-bit (again?) by adding the output of
+    "getconf LFS_CFLAGS" to CFLAGS.
+    + Fixes lintian warning binary-file-built-without-LFS-support
+    + Closes #722709
   * Switch to a dh7 style debian/rules file
   * Bump Standards-Version to 3.9.4 (no changes)
   * Apply wrap-and-sort
   * Switch to a dh7 style debian/rules file
   * Bump Standards-Version to 3.9.4 (no changes)
   * Apply wrap-and-sort
index 38343a93098f7f8a905385680f82e73c92dfa7ee..63237708b8bdef46c7c252b6bb48d01d86115753 100755 (executable)
@@ -7,4 +7,4 @@ include /usr/share/dpkg/buildflags.mk
        dh $@
 
 override_dh_auto_build:
        dh $@
 
 override_dh_auto_build:
-       dh_auto_build -- LDFLAGS="$(LDFLAGS)" CFLAGS="$(CFLAGS) -DIS_SYSV -DHAS_DIRENT -DHAS_RENAME"
+       dh_auto_build -- LDFLAGS="$(LDFLAGS)" CFLAGS="$(CFLAGS) $(shell getconf LFS_CFLAGS) -DIS_SYSV -DHAS_DIRENT -DHAS_RENAME"