summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2014-07-30 14:29:11 +0200
committerFrank Gevaerts <frank@gevaerts.be>2014-07-30 14:29:27 +0200
commit78f4f7b621d50ab63cd80b93e55aca5cc6ac910d (patch)
tree58a3258c7052e931a12d05d4b203cff267f5d8e7 /tools
parent86fa139eac0493893e08769a82e3a0eb6ed7bc90 (diff)
downloadrockbox-78f4f7b621d50ab63cd80b93e55aca5cc6ac910d.tar.gz
rockbox-78f4f7b621d50ab63cd80b93e55aca5cc6ac910d.zip
Make crosstool-ng build with gnu make 4.0
Change-Id: Id3a5a310e6fa53e690c92f420994875cb1bfff43
Diffstat (limited to 'tools')
-rwxr-xr-xtools/rockboxdev.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/rockboxdev.sh b/tools/rockboxdev.sh
index 4ddd34e4fd..34ecfce189 100755
--- a/tools/rockboxdev.sh
+++ b/tools/rockboxdev.sh
@@ -114,7 +114,7 @@ build() {
url="$GNU_MIRROR/binutils"
;;
- ctng)
+ crosstool-ng)
file="crosstool-ng-$version.tar.bz2"
url="http://crosstool-ng.org/download/crosstool-ng"
;;
@@ -205,7 +205,7 @@ build() {
echo "ROCKBOXDEV: $toolname/configure"
case $toolname in
- ctng) # ct-ng doesnt support out-of-tree build and the src folder is named differently
+ crosstool-ng) # ct-ng doesnt support out-of-tree build and the src folder is named differently
toolname="crosstool-ng"
cp -r ../$toolname-$version/* ../$toolname-$version/.version .
./configure --prefix=$prefix $configure_params
@@ -236,7 +236,7 @@ make_ctng() {
if test ! -n "$ctng"; then
if test ! -f "$prefix/bin/ct-ng"; then # look if we build it already
- build "ctng" "" "1.13.2"
+ build "crosstool-ng" "" "1.13.2" "crosstool-ng-1.13.2.diff"
fi
fi
ctng=`PATH=$prefix/bin:$PATH which ct-ng`