summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-12-19 18:33:32 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2009-12-19 18:33:32 +0100
commit98e07066854de558bb5651b7305d2da527048d0b (patch)
tree38a598508fbf7d525de0c8ab7454081042af347c /scripts
parent25631be7315cdddc0cf2ea273f3e06332128d36d (diff)
parent0102d12701a8634300c4b174e5bbeb898218ba18 (diff)
Merge branch 'master' of openadk.org:/git/openadk
Diffstat (limited to 'scripts')
-rw-r--r--scripts/ipkg-build4
-rw-r--r--scripts/scan-tools.sh21
2 files changed, 12 insertions, 13 deletions
diff --git a/scripts/ipkg-build b/scripts/ipkg-build
index 378236b78..ec0e0cdef 100644
--- a/scripts/ipkg-build
+++ b/scripts/ipkg-build
@@ -1,4 +1,4 @@
-#!/bin/sh -x
+#!/usr/bin/env bash
# ipkg-build -- construct a .ipk from a directory
# Carl Worth <cworth@east.isi.edu>
@@ -233,7 +233,7 @@ tmp_dir=$dest_dir/IPKG_BUILD.$$
mkdir $tmp_dir
echo $CONTROL > $tmp_dir/tarX
-( cd $pkg_dir && tar $ogargs -czf $tmp_dir/data.tar.gz . -X $tmp_dir/tarX )
+( cd $pkg_dir && tar $ogargs -X $tmp_dir/tarX -czf $tmp_dir/data.tar.gz . )
( cd $pkg_dir/$CONTROL && tar $ogargs -czf $tmp_dir/control.tar.gz . )
rm $tmp_dir/tarX
diff --git a/scripts/scan-tools.sh b/scripts/scan-tools.sh
index fb2f957e6..ef6d7babb 100644
--- a/scripts/scan-tools.sh
+++ b/scripts/scan-tools.sh
@@ -39,13 +39,12 @@ Linux)
FreeBSD)
# supported with no extra quirks at the moment
;;
+MirBSD)
+ # supported with no extra quirks at the moment
+ ;;
CYG*)
- # mkdir /openadk
- # mount -b -s -o managed "C:/openadk" "/openadk"
- # cd /
- # git clone git+ssh://openadk.org/git/openadk.git
- echo "Building OpenADK on $os is needs a managed mount point."
- echo '"mount -b -s -o managed "C:/openadk" "/openadk"'
+ echo "Building OpenADK on $os needs a small registry change."
+ echo 'See http://www.cygwin.com/1.7/cygwin-ug-net/using-specialnames.html'
;;
NetBSD)
echo "Building OpenADK on $os is currently unsupported."
@@ -101,11 +100,11 @@ if [[ $X != *@(Native compiler works)* ]]; then
fi
rm test 2>/dev/null
-if ! which cpp >/dev/null 2>&1; then
- echo You must install a C preprocessor to continue.
- echo
- out=1
-fi
+#if ! which cpp >/dev/null 2>&1; then
+# echo You must install a C preprocessor to continue.
+# echo
+# out=1
+#fi
if ! which tar >/dev/null 2>&1; then
echo You must install GNU tar to continue.