Upgrades to packages
[hvlinux.git] / stage4 / cis-gnome
index b6297eb..9791710 100755 (executable)
@@ -1,21 +1,27 @@
 #!/bin/sh
-# First argument of this script is the package name
+# First argument of this script is the package name.
+# Remaining arguments are additional configure options.
 
 # Reading system configuration informations, functions and package versions.
 source ../sysinfos
 source ../functions
 source ../packages-list
 
+PACKAGE=${1}
+shift
+CONFIGURE_OPTS=${*}
+
 # Applying patches (if any)
-apply_patches ${1} &&
+apply_patches ${PACKAGE} &&
 
-cd ${LFS_TMP}/${1}-build &&
-../${1}/configure \
+cd ${LFS_TMP}/${PACKAGE}-build &&
+../${PACKAGE}/configure \
     --prefix=${GNOME2_PREFIX} \
     --libexecdir=${GNOME2_PREFIX}/sbin \
     --infodir=${GNOME2_PREFIX}/share/info \
     --localstatedir=/var/lib \
-    --sysconfdir=/etc/gnome/${GNOME2_VER} &&
+    --sysconfdir=/etc/gnome/${GNOME2_VER} \
+    ${CONFIGURE_OPTS} &&
 make &&
 make install &&
 ldconfig