summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-10-22 12:27:35 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-10-22 12:27:35 +0000
commit989a0208065f220c2a389fd4c7a23b92be720f97 (patch)
tree58c02bca643538000304cf2dcc2b71e4a01d1ed8
parent6fcb731a45697478d49e88465e6e59a58aefa00c (diff)
fix typo in my last commit
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2232 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-xopenwrt/scripts/make-ipkg-dir.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/scripts/make-ipkg-dir.sh b/openwrt/scripts/make-ipkg-dir.sh
index b43edc37c..236cb6feb 100755
--- a/openwrt/scripts/make-ipkg-dir.sh
+++ b/openwrt/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 <openwrt-devel@openwrt.org>" >> "$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"
}