X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/6fcb731a45697478d49e88465e6e59a58aefa00c..bed0ad8379dabfada2b97415ab73d8b53f981c22:/openwrt/scripts/make-ipkg-dir.sh 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 " >> "$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" }