diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/adkprepare.sh | 2 | ||||
-rwxr-xr-x | scripts/install | 6 | ||||
-rw-r--r-- | scripts/rstrip.sh | 1 |
3 files changed, 8 insertions, 1 deletions
diff --git a/scripts/adkprepare.sh b/scripts/adkprepare.sh index 168938952..08503bafd 100755 --- a/scripts/adkprepare.sh +++ b/scripts/adkprepare.sh @@ -87,7 +87,7 @@ freebsd() { freebsd_full() { echo "Preparing FreeBSD for full OpenADK package builds" - pkg_add -r intltool lynx bison zip xkbcomp glib20 libIDL + pkg_add -r intltool lynx bison zip xkbcomp glib20 libIDL autoconf262 } case $os in diff --git a/scripts/install b/scripts/install new file mode 100755 index 000000000..da14ec8ca --- /dev/null +++ b/scripts/install @@ -0,0 +1,6 @@ +#!/usr/bin/env bash +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +cmd=$(echo "$@"|sed -e "s#\(-o\|-g\) [0-9]*##g") +/usr/bin/install $cmd diff --git a/scripts/rstrip.sh b/scripts/rstrip.sh index 0c7550d8e..951362d35 100644 --- a/scripts/rstrip.sh +++ b/scripts/rstrip.sh @@ -54,6 +54,7 @@ find $TARGETS -type f -a -exec file {} \; | \ esac echo "$SELF: $V:$S" echo "-> $T $F" + eval "chmod u+w $F" eval "$T $F" done exit 0 |