From bee2cfe2c207259e785bf9811e82f21467395770 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Thu, 16 Oct 2008 06:59:32 +0200 Subject: [PATCH] Fixup info_tmpl now that $url is gone. --HG-- extra : convert_revision : b79e598e34d9297e690ed130d28c99f404ad51e4 --- xbps.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xbps.sh b/xbps.sh index bea87c406e..bb1c9cf140 100755 --- a/xbps.sh +++ b/xbps.sh @@ -171,9 +171,8 @@ info_tmpl() echo "pkgname: $pkgname" echo "version: $version" for i in "${distfiles}"; do - [ -n "$i" ] && echo "distfile: $i" + [ -n "$i" ] && i=$(echo $i|$sed_cmd s'|@||g') && echo "distfile: $i" done - echo "URL: $url" echo "maintainer: $maintainer" [ -n $checksum ] && echo "checksum: $checksum" echo "build_style: $build_style"