diff options
Diffstat (limited to 'chapter6')
-rw-r--r-- | chapter6/backup.sh | 12 | ||||
-rw-r--r-- | chapter6/m4.sh | 2 |
2 files changed, 9 insertions, 5 deletions
diff --git a/chapter6/backup.sh b/chapter6/backup.sh index c763d8c..f2f0d64 100644 --- a/chapter6/backup.sh +++ b/chapter6/backup.sh @@ -1,25 +1,27 @@ #!/bin/bash -FILE="${LFS_VER}-ch6-backup.tar.xz" -DIRS=(bin etc lib lib64 sbin tools usr var) +file="${LFS_VER}-ch6-backup.tar.xz" +directories=(bin etc lib lib64 sbin tools usr var) if [ -f "${LFS}/sources/chapter6/backup" ]; then printf "%b" "${YLW}Chapter 6 ${GRN}Backup found. Remove manually to backup again.${RST}" else - echo -ne "${GRN}Backing up ${YLW}${LFS}${GRN} to ${YLW}${FILE}${RST}... " + echo -ne "${GRN}Backing up ${YLW}${LFS}${GRN} to ${YLW}${file}${RST}... " pushd "${LFS}" > /dev/null || exit 1 - sudo XZ_OPTS="-T${NUMPROCS} -e" tar cJpf "${HOME}"/"${FILE}" "${DIRS[@]}" & pid=$! + sudo XZ_OPTS="-T${NUMPROCS} -e" tar cJpf "${HOME}"/"${file}" "${directories[@]}" & pid=$! spinner "$pid" retval=$? if [ "$retval" -ne 0 ]; then printf "%b" "${RED}Backup FAILED!${RST}\n" exit 1 else - sudo chown "${USER}" "${HOME}"/"${FILE}" + sudo chown "${USER}" "${HOME}"/"${file}" printf "%b" "${GRN}OK${RST}\n" fi popd > /dev/null || exit 1 touch "${LFS}/sources/chapter6/backup" fi + +unset file directories diff --git a/chapter6/m4.sh b/chapter6/m4.sh index 2f67ebe..6dc2c9a 100644 --- a/chapter6/m4.sh +++ b/chapter6/m4.sh @@ -12,3 +12,5 @@ sed '/^HELP2MAN/s/$/ --no-discard-stderr/' -i doc/Makefile.in --build="$(build-aux/config.guess)" && make && make DESTDIR="${LFS}" -j1 install + +unset CFLAGS |