diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-10-22 12:25:42 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-10-22 12:25:42 +0000 |
commit | 4b509a8fb845c5565465e405bc1a2851837b04a6 (patch) | |
tree | a22bbe1d443e2a251192529e3157ddf3e94d8c1c /scripts | |
parent | 6b53157103d462f7ea0b81f9fe77412719ea2260 (diff) |
set undefined WD variable
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2231 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/make-ipkg-dir.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/make-ipkg-dir.sh b/scripts/make-ipkg-dir.sh index 56740676a..b43edc37c 100755 --- a/scripts/make-ipkg-dir.sh +++ b/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 <openwrt-devel@openwrt.org>" >> "$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" } |