diff options
Diffstat (limited to 'chapter5/libstdc++.sh')
-rw-r--r-- | chapter5/libstdc++.sh | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/chapter5/libstdc++.sh b/chapter5/libstdc++.sh index d8cb707..3078aa5 100644 --- a/chapter5/libstdc++.sh +++ b/chapter5/libstdc++.sh @@ -1,17 +1,17 @@ -#!/bin/bash -set -e - -mkdir -v build -cd build || exit 1 - -../libstdc++-v3/configure \ - --host="${LFS_TGT}" \ - --build="$(../config.guess)" \ - --prefix=/usr \ - --disable-multilib \ - --disable-nls \ - --disable-libstdcxx-pch \ - --with-gxx-include-dir=/tools/"${LFS_TGT}"/include/c++/"${VERSION}" && - -make && -make -j1 DESTDIR="${LFS}" install +#!/bin/bash
+set -e
+
+mkdir -v build
+cd build || exit 1
+
+../libstdc++-v3/configure \
+ --host="${LFS_TGT}" \
+ --build="$(../config.guess)" \
+ --prefix=/usr \
+ --disable-multilib \
+ --disable-nls \
+ --disable-libstdcxx-pch \
+ --with-gxx-include-dir=/tools/"${LFS_TGT}"/include/c++/"${VERSION}" &&
+
+make &&
+make -j1 DESTDIR="${LFS}" install
|