Add installation of separate tzdata package
[hvlinux.git] / stage1 / pkg / coreutils
index d454d93..d8de2a7 100644 (file)
@@ -1,5 +1,16 @@
 #!/bin/bash
 
+hvconfig_post()
+{
+    cd ${LFS_TMP}/${PACKAGE}
+    sed -e 's/^#\(run_help2man.*dummy-man\)/\1/' \
+        -e 's/^\(run_help2man.*PERL.*\)/#\1/' \
+        -i Makefile
+
+    # Prevent autoreconf from discarding our modification to Makefile:
+    touch Makefile{,.in,.am}
+}
+
 # Configure cannot properly determine how to get free space when cross-compiling
 # and as a result the df program will not be built. Add the following entries to
 # config.cache  to correct this, and fix various cross-compiling issues:
@@ -10,9 +21,3 @@ fu_cv_sys_stat_statfs2_bsize=yes
 gl_cv_func_working_mkstemp=yes
 EOF
 }
-
-hvconfig_pre()
-{
-    # Fix a bug when the uname patch is automatically applied
-    touch ${LFS_TMP}/${PACKAGE}/man/{uname,hostname}.1
-}