X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage1%2Fpkg%2Fgettext;h=902439f53f404d63c5fa6388e0a54cf53a7ec76b;hb=23534737a153c4084e3dd44a3e6cdcf2537aee01;hp=6bd0d9a222e323c0234aab6a62e2abcc7b4afbf6;hpb=3605ab38ca7604b1fe43c3bce5e4963730a85d39;p=hvlinux.git diff --git a/stage1/pkg/gettext b/stage1/pkg/gettext index 6bd0d9a..902439f 100644 --- a/stage1/pkg/gettext +++ b/stage1/pkg/gettext @@ -1,5 +1,10 @@ #!/bin/bash +hvconfig_pre() +{ + 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: @@ -13,18 +18,7 @@ EOF 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()