From 4dfe8f99c42a2041657305493103a2e0da77b688 Mon Sep 17 00:00:00 2001 From: Pierre Labastie Date: Thu, 23 Mar 2023 22:21:26 +0100 Subject: [PATCH] gen_pkg_book: fixes for dependency checkings Fix a typo in function definition use sudo for porg -r and porgball -e --- BLFS/gen_pkg_book.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BLFS/gen_pkg_book.sh b/BLFS/gen_pkg_book.sh index e953013..e4dc8bb 100755 --- a/BLFS/gen_pkg_book.sh +++ b/BLFS/gen_pkg_book.sh @@ -321,13 +321,13 @@ set -e VERSIONED_LIST= for p in $LIST_UNNEEDED; do VERSIONED_LIST="\$VERSIONED_LIST \$(porg \$p)" - porg -rb \$p + sudo porg -rb \$p done # Function to restore packages -restore_pack { +restore_pack () { for p in \$VERSIONED_LIST; do - porgball -e -l /var/lib/packages/\${p}.porg.tar.gz + sudo porgball -e -l /var/lib/packages/\${p}.porg.tar.gz done }