diff options
Diffstat (limited to '')
-rwxr-xr-x | make_slackware_live.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make_slackware_live.sh b/make_slackware_live.sh index 80ecc64..ebae873 100755 --- a/make_slackware_live.sh +++ b/make_slackware_live.sh @@ -2444,7 +2444,7 @@ EOT # get that added so that our mew submenu will be populated: for DAWPKG in $(cat ${LIVE_TOOLDIR}/pkglists/z03_daw.lst |grep -v x42 |grep -Ev '(^ *#)' ) ; do # Find the installed full package name belonging to the DAW package: - PKGINST=$( ls -1 ${LIVE_ROOTDIR}/var/log/packages/${DAWPKG}* 2>/dev/null |grep -E "/var/log/packages/${DAWPKG}-[^-]+-[^-]+-[^-]+" || true) + PKGINST=$( ls -1 ${LIVE_ROOTDIR}/var/log/packages/${DAWPKG}* 2>/dev/null |grep -E "/var/log/packages/${DAWPKG}-[^-]+-[^-]+-[^-]+$" || true) if [ -n "${PKGINST}" ]; then for DESKTOPF in $(grep 'usr/share/applications/.*.desktop' ${PKGINST}) do |