From 3739fe9913af24ea24efc2c0c15c1ca234353fdf Mon Sep 17 00:00:00 2001 From: Cedric Staniewski Date: Thu, 3 Jun 2010 17:33:08 +0200 Subject: makepkg: print only base filename of install/changelog files The complete file path of a temporary symlink is really useless information. Signed-off-by: Cedric Staniewski Signed-off-by: Dan McGee --- scripts/makepkg.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 76b61833..c122c309 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -1115,7 +1115,7 @@ create_srcpackage() { # evaluate any bash variables used eval file='${srclinks}/${pkgbase}/'${file} if [[ ! -f $file ]]; then - msg2 "$(gettext "Adding %s file (%s)...")" "$i" "$file" + msg2 "$(gettext "Adding %s file (%s)...")" "$i" "${file##*/}" ln -s "${startdir}/$file" "${srclinks}/${pkgbase}/" fi done -- cgit v1.2.3-24-g4f1b