From e31e892cb633a2db447cd801d80fbae220ea910a Mon Sep 17 00:00:00 2001 From: Al Stone Date: Fri, 21 Dec 2012 11:20:36 -0700 Subject: temporary workaround for networking issues in the models Signed-off-by: Al Stone --- stage1 | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/stage1 b/stage1 index 949b757..62e7a07 100755 --- a/stage1 +++ b/stage1 @@ -1089,10 +1089,15 @@ EOF cp $STAGE2 $ROOTFS/stage2/stage2 ( - newJ=$(echo $J | sed 's/-j//') - echo J=-j$newJ + # BOZO: temporary fix for network issues in models + #newJ=$(echo $J | sed 's/-j//') + #echo J=-j$newJ + + #echo DISTCC_HOSTS=$(host $(hostname) | sed 's/.* //'):${DISTCC_PORT}/999 + echo J=1 + echo DISTCC_HOSTS=localhost + # END BOZO - echo DISTCC_HOSTS=$(host $(hostname) | sed 's/.* //'):${DISTCC_PORT}/999 echo DISTCC_BACKOFF_PERIOD=0 echo PATH=/stage2/distcc-bin:\$PATH -- cgit From a9a737396e9177e66c0d5ec9416398dfb99586d7 Mon Sep 17 00:00:00 2001 From: Al Stone Date: Fri, 21 Dec 2012 15:36:56 -0700 Subject: ensure nss-util is built as 64-bit Signed-off-by: Al Stone --- recipe.d/0023-nss-util | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/recipe.d/0023-nss-util b/recipe.d/0023-nss-util index 1d7b586..2375881 100644 --- a/recipe.d/0023-nss-util +++ b/recipe.d/0023-nss-util @@ -22,6 +22,12 @@ export FREEBL_NO_DEPEND NSS_USE_SYSTEM_SQLITE=1 export NSS_USE_SYSTEM_SQLITE +if [ "$SUFFIX" = "64" ] +then + USE_64=1 + export USE_64 +fi + make -C $SRC/nss-util-3.*/mozilla/security/coreconf make -C $SRC/nss-util-3.*/mozilla/security/dbm make -C $SRC/nss-util-3.*/mozilla/security/nss -- cgit