X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=scripts%2Fmake-ipkg-dir.sh;h=236cb6feb4b01f8428e893fe1b35992d63e96ed2;hb=5ed5b75f5cbf11de7fb27f00cb921ab88e7e1e5b;hp=b43edc37c0a3875d80968150778603c0dfcb8ba8;hpb=4b509a8fb845c5565465e405bc1a2851837b04a6;p=openwrt-10.03%2F.git 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" }