Correction problème avec make oldconfig pour architecture autre que le HOST.
[hvlinux.git] / stage1 / pkg / coreutils
index 2895591..c5ce637 100644 (file)
@@ -3,7 +3,13 @@
 hvconfig_pre()
 {
     # Fix a bug when the uname patch is automatically applied
-    touch ${LFS_TMP}/${PACKAGE}/man/{uname,hostname}.1
+    touch ${LFS_TMP}/${PACKAGE}/man/hostname.1
+
+    # Patches may modify many .c files, so the make process will try to
+    # re-build the manpages by running help2man, and this causes problems
+    # when cross-compiling. So let's just update the timestamps and skip the
+    # help2man step.
+    find ${LFS_TMP}/${PACKAGE} -name \*.1 -exec touch {} \;
 }
 
 # Configure cannot properly determine how to get free space when cross-compiling