From 6451d03c02951f9cbf46510e5d0adb74ffca70c8 Mon Sep 17 00:00:00 2001 From: nico Date: Sat, 22 Oct 2005 12:27:35 +0000 Subject: [PATCH] fix typo in my last commit git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2232 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- scripts/make-ipkg-dir.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make-ipkg-dir.sh b/scripts/make-ipkg-dir.sh index b43edc37c..236cb6feb 100755 --- a/scripts/make-ipkg-dir.sh +++ b/scripts/make-ipkg-dir.sh @@ -12,7 +12,7 @@ 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=$(echo "$WD)" | 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.35.1