[backfire] uhttpd: merge r28792
[openwrt-10.03/.git] / scripts / make-ipkg-dir.sh
index 56740676a9913364e01d9ed9229f95cfc2fd3f5d..902a4b526b00a2d81139dc530bc187c28ce9c66b 100755 (executable)
@@ -1,16 +1,18 @@
-#!/bin/bash
+#!/bin/sh
 BASE=http://svn.openwrt.org/openwrt/trunk/openwrt
 TARGET=$1
 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"
 }