From fef910c087d277a370b73238359802376c3daab6 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sat, 22 Oct 2005 12:35:22 +0000 Subject: [PATCH] update make-ipkg-dir.sh in whiterussian SVN-Revision: 2233 --- openwrt/scripts/make-ipkg-dir.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/openwrt/scripts/make-ipkg-dir.sh b/openwrt/scripts/make-ipkg-dir.sh index 5225c3448d..7e80f91a06 100755 --- a/openwrt/scripts/make-ipkg-dir.sh +++ b/openwrt/scripts/make-ipkg-dir.sh @@ -5,12 +5,14 @@ CONTROL=$2 VERSION=$3 ARCH=$4 +WD=$(pwd) + mkdir -p "$TARGET/CONTROL" grep '^[^(Version|Architecture)]' "$CONTROL" > "$TARGET/CONTROL/control" grep '^Maintainer' "$CONTROL" 2>&1 >/dev/null || \ echo "Maintainer: OpenWrt Developers Team " >> "$TARGET/CONTROL/control" grep '^Source' "$CONTROL" 2>&1 >/dev/null || { - pkgbase=$(pwd | sed -e "s|^$TOPDIR/||g") + pkgbase=$(echo "$WD" | sed -e "s|^$TOPDIR/||g") [ "$pkgbase" = "$WD" ] && src="N/A" || src="$BASE/$pkgbase" echo "Source: $src" >> "$TARGET/CONTROL/control" } -- 2.30.2