summaryrefslogtreecommitdiffstats
path: root/openwrt/scripts
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-10-22 12:25:42 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-10-22 12:25:42 +0000
commit6fcb731a45697478d49e88465e6e59a58aefa00c (patch)
tree6d5d3a05634c8eaeb2c95744c3b3e43472cfe000 /openwrt/scripts
parent1f96d69f566aa785c0f0fb4fb25e6198a96bb4c3 (diff)
set undefined WD variable
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2231 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/scripts')
-rwxr-xr-xopenwrt/scripts/make-ipkg-dir.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/openwrt/scripts/make-ipkg-dir.sh b/openwrt/scripts/make-ipkg-dir.sh
index 56740676a..b43edc37c 100755
--- a/openwrt/scripts/make-ipkg-dir.sh
+++ b/openwrt/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"
}