From 40e575e003c035e20614e45172af7bbe933ce1ee Mon Sep 17 00:00:00 2001 From: Michael Olbrich Date: Mon, 28 Nov 2016 14:51:52 +0100 Subject: ptxdist: improve 'print' handling 'print-%' does not match 'print-/some/path'. This would be useful to debug the tarball/package mappings that are defined as '$(_SOURCE) = '. Using '/print-%' instead seems to work better. Use it but keep the old patterns for backwards compatibility. Signed-off-by: Michael Olbrich --- bin/ptxdist | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/ptxdist') diff --git a/bin/ptxdist b/bin/ptxdist index 5ca21325c..59a39ef56 100755 --- a/bin/ptxdist +++ b/bin/ptxdist @@ -2028,7 +2028,7 @@ EOF exit 1 fi while [ ${#} -gt 0 ]; do - if [ -n "${!1}" ]; then + if [[ ! ( "${1}" =~ "/" ) ]] && [ -n "${!1}" ]; then if [ "${PTXDIST_VERBOSE}" = "1" ]; then echo -n "${1}=" fi @@ -2040,7 +2040,7 @@ EOF check_deps || exit 1 check=1 fi - ptxd_make_log "print-${1}" 2>/dev/null || { + ptxd_make_log "/print-${1}" 2>/dev/null || { echo "${1} undefined" >&2 exit 1 } -- cgit v1.2.3