summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2019-04-23 15:36:33 +0200
committer Eric Hameleers <alien@slackware.com>2019-04-23 15:36:33 +0200
commit6a949450072be0ba95553464bc03aff950903bf2 (patch)
tree789959b2099effc43c095e7278fa3a440195977e
parent1e4f3f38fb15dc789c13468683a87c3d7a8c41e4 (diff)
downloadliveslak-6a949450072be0ba95553464bc03aff950903bf2.tar.gz
liveslak-6a949450072be0ba95553464bc03aff950903bf2.tar.xz
Make the '-m' commandline switch more universal
The '-m' parameter of the 'make_slackware_live.sh' script allows you to add more packages to the Live ISO without modifying any of the script's "SEQ_*" package sequence variables. However, the script would prepend "pkglist:" to the argument value, which is redundant since 'pkglist' is the default anyway. By removing this prepend string we can now allow a syntax like this: "-m local:foo" to add a series of packages in the subdirectory 'foo' of the 'local' (or 'local64') directory more easily.
-rwxr-xr-xmake_slackware_live.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/make_slackware_live.sh b/make_slackware_live.sh
index f8cd8b7..e438bb3 100755
--- a/make_slackware_live.sh
+++ b/make_slackware_live.sh
@@ -1166,7 +1166,7 @@ esac
# Do we need to create/include additional module(s) defined by a pkglist:
if [ -n "$SEQ_ADDMOD" ]; then
echo "-- Adding ${SEQ_ADDMOD}."
- MSEQ="${MSEQ} pkglist:${SEQ_ADDMOD}"
+ MSEQ="${MSEQ} ${SEQ_ADDMOD}"
fi
# Do we need to include multilib?