summaryrefslogtreecommitdiffstats
path: root/resources/scripts/helpers/build
diff options
context:
space:
mode:
Diffstat (limited to 'resources/scripts/helpers/build')
-rwxr-xr-xresources/scripts/helpers/build/clean/crossgcc2
-rwxr-xr-xresources/scripts/helpers/build/module/crossgcc8
2 files changed, 5 insertions, 5 deletions
diff --git a/resources/scripts/helpers/build/clean/crossgcc b/resources/scripts/helpers/build/clean/crossgcc
index e0a5292..e78e767 100755
--- a/resources/scripts/helpers/build/clean/crossgcc
+++ b/resources/scripts/helpers/build/clean/crossgcc
@@ -24,5 +24,5 @@
[ "x${DEBUG+set}" = 'xset' ] && set -v
set -u -e
-make -C "crossgcc/util/crossgcc/" distclean
+make -C "crossgcc/" crossgcc-clean
diff --git a/resources/scripts/helpers/build/module/crossgcc b/resources/scripts/helpers/build/module/crossgcc
index 28474ec..801cd5e 100755
--- a/resources/scripts/helpers/build/module/crossgcc
+++ b/resources/scripts/helpers/build/module/crossgcc
@@ -25,13 +25,13 @@
set -u -e
(
-cd "crossgcc/util/crossgcc/"
+cd "crossgcc/"
if [ $# -lt 1 ]; then
- make build-i386
- make build-arm
+ make crossgcc-i386
+ make crossgcc-arm
else
for architecture in "${@}"; do
- make build-${architecture}
+ make crossgcc-${architecture}
done
fi
)