summaryrefslogtreecommitdiff
path: root/baserock-bootstrap
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2011-12-16 19:13:21 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2012-01-03 11:01:57 +0000
commit6df87ff181ae5883db84b91aae947d615407af77 (patch)
tree4c15fb87ecd639a46bd3ad931f48acb7e6ece59b /baserock-bootstrap
parent33bc000f75af761767f08845a9eb9fe6f6f6e756 (diff)
downloadmorph-6df87ff181ae5883db84b91aae947d615407af77.tar.gz
Fix some build issues
Diffstat (limited to 'baserock-bootstrap')
-rwxr-xr-xbaserock-bootstrap6
1 files changed, 3 insertions, 3 deletions
diff --git a/baserock-bootstrap b/baserock-bootstrap
index 5129f436..017c8720 100755
--- a/baserock-bootstrap
+++ b/baserock-bootstrap
@@ -8,7 +8,7 @@ LFS="$(pwd)/tree"
allsources="$LFS/../../lfs-tarballs"
sources="$LFS/sources"
tools="$LFS/tools"
-SNAPSHOT="$1"
+SNAPSHOT="${1:-'no'}"
JOBS=$((echo -n '1.5*'; grep -c '^processor' /proc/cpuinfo) |
bc -lq |
@@ -169,10 +169,10 @@ pass1_eglibc()
--disable-profile --enable-add-ons \
--enable-kernel=2.6.25 --with-headers="$tools/include" \
--without-selinux --without-cvs \
- libc_cv_forced_unwind=yes libc_cv_c_cleanup=yes
+ libc_cv_forced_unwind=yes libc_cv_c_cleanup=yes libc_cv_ssp=no
make -j$JOBS
- make install
+ make install vardbdir="$tools/var/db"
rm -rf "$sources/eglibc-2.13"
fi
}