projects
/
openwrt
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3606854
)
fix typo in my last commit
author
Nicolas Thill
<nico@openwrt.org>
Sat, 22 Oct 2005 12:27:35 +0000
(12:27 +0000)
committer
Nicolas Thill
<nico@openwrt.org>
Sat, 22 Oct 2005 12:27:35 +0000
(12:27 +0000)
SVN-Revision: 2232
openwrt/scripts/make-ipkg-dir.sh
patch
|
blob
|
history
diff --git
a/openwrt/scripts/make-ipkg-dir.sh
b/openwrt/scripts/make-ipkg-dir.sh
index b43edc37c0a3875d80968150778603c0dfcb8ba8..236cb6feb4b01f8428e893fe1b35992d63e96ed2 100755
(executable)
--- 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 <openwrt-devel@openwrt.org>" >> "$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"
}