diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-12-11 00:52:08 -0600 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-12-11 00:52:08 -0600 |
commit | 2c8204d6325a1a6607392d5905227b9043da17cc (patch) | |
tree | 5a2d9047d0a3fb5664c17284b92c6e572507d062 /chapter8/bash.sh | |
parent | f699702e72de8200632cfb95350ad51bb68c4b6f (diff) |
Major updates.
Diffstat (limited to 'chapter8/bash.sh')
-rw-r--r-- | chapter8/bash.sh | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/chapter8/bash.sh b/chapter8/bash.sh index 92402e5..73de0bf 100644 --- a/chapter8/bash.sh +++ b/chapter8/bash.sh @@ -1,18 +1,18 @@ -#!/bin/bash -# shellcheck disable=SC2016 - -patch -Np1 -i ../bash-"${VERSION}"-fixes-1.patch && - -sed -i '/^bashline.o:.*shmbchar.h/a bashline.o: ${DEFDIR}/builtext.h' Makefile.in && - -./configure --prefix=/usr \ - --docdir=/usr/share/doc/bash-"${VERSION}" \ - --without-bash-malloc \ - --with-installed-readline && - -make && - -make -j1 install && -mv -vf /usr/bin/bash /bin - -#exec /bin/bash --login +h +#!/bin/bash
+# shellcheck disable=SC2016
+
+patch -Np1 -i ../bash-"${VERSION}"-fixes-1.patch &&
+
+sed -i '/^bashline.o:.*shmbchar.h/a bashline.o: ${DEFDIR}/builtext.h' Makefile.in &&
+
+./configure --prefix=/usr \
+ --docdir=/usr/share/doc/bash-"${VERSION}" \
+ --without-bash-malloc \
+ --with-installed-readline &&
+
+make &&
+
+make -j1 install &&
+mv -vf /usr/bin/bash /bin
+
+#exec /bin/bash --login +h
|