Upgrades to packages
[hvlinux.git] / stage2 / cis-coreutils
index 941ee38..f96ab6e 100755 (executable)
@@ -9,9 +9,13 @@ source ../packages-list
 # Applying patches (if any)
 apply_patches ${1} &&
 
+#--enable-no-install-program=kill,uptime
+#    The purpose of this switch is to prevent Coreutils from installing binaries that will be installed by other packages later.
 cd ${LFS_TMP}/${1}-build &&
 ../${1}/configure \
-    --prefix=/usr &&
+    --prefix=/usr \
+    --enable-install-program=hostname \
+    --enable-no-install-program=kill,uptime &&
 make -j ${MAKEJOBS} &&
 make install &&