X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage4%2Fcis-gnome;h=b381577b8a5a36446e6799e8bcd0e60afc36d756;hb=6d3d50c17b24ef41f917f5776696eca810198092;hp=b6297ebdb66f9fb4918ea17ffb481b1a37c16b5a;hpb=16cc35ba4890382ee9368a176e4f5a7fa773b7a6;p=hvlinux.git diff --git a/stage4/cis-gnome b/stage4/cis-gnome index b6297eb..b381577 100755 --- a/stage4/cis-gnome +++ b/stage4/cis-gnome @@ -1,24 +1,28 @@ #!/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 \ + --sysconfdir=/etc/gnome/${GNOME2_VER} \ --localstatedir=/var/lib \ - --sysconfdir=/etc/gnome/${GNOME2_VER} && + ${CONFIGURE_OPTS} && make && make install && ldconfig -# Return last error exit $?