X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage1%2Fpkg%2Fgettext;h=afe372d1e397c70a38aae7ae40a632afca0289a6;hb=7931fe5257f3685f6870162d2529ca26c9e85e59;hp=670907b94a30c3657a504987399c866101fdee36;hpb=69ac3e7cf686f8e95e47a7ab89bc38796aace488;p=hvlinux.git diff --git a/stage1/pkg/gettext b/stage1/pkg/gettext index 670907b..afe372d 100644 --- a/stage1/pkg/gettext +++ b/stage1/pkg/gettext @@ -1,30 +1,26 @@ #!/bin/bash +hvconfig_pre() +{ + CONFIGURE_OPTS="\ + ${CONFIGURE_OPTS} \ + --disable-shared" +} + # When cross-compiling the Gettext configure script assumes we don't have a # working wcwidth when we do. The following will fix possible compilation # errors because of this assumption: -config_cache() +hvconfig_cache() { cat > ${LFS_TMP}/${PACKAGE}-build/config.cache << EOF gl_cv_func_wcwidth_works=yes EOF } -hvconfigure() +hvconfig() { cd ${LFS_TMP}/${PACKAGE}/gettext-tools - - FINAL_CFG_OPTS="\ - --prefix=/tools \ - --build=${CLFS_HOST} \ - --host=${CLFS_TARGET} \ - ${CONFIGURE_OPTS}" - - echo "Running configure with options:" - echo " <${FINAL_CFG_OPTS}>" - - CC="${CC} ${CLFS_BUILDFLAGS}" CXX="${CXX} ${CLFS_BUILDFLAGS}" \ - ./configure ${FINAL_CFG_OPTS} + ./configure ${CONFIGURE_OPTS} } hvbuild()