From: Uwe Hermann Date: Sun, 30 Mar 2014 16:31:42 +0000 (+0200) Subject: cross-compile scripts: Use common build dir name. X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=07947dda98729499f1c8b85a8ce8b27d9f5a6753;p=sigrok-util.git cross-compile scripts: Use common build dir name. --- diff --git a/cross-compile/android/sigrok-cross-android b/cross-compile/android/sigrok-cross-android index e0460ab..0c7245f 100755 --- a/cross-compile/android/sigrok-cross-android +++ b/cross-compile/android/sigrok-cross-android @@ -36,7 +36,7 @@ TOOLCHAIN_TRIPLET=arm-linux-androideabi PREFIX=$HOME/sr_android # The path where to download files to and where to build packages. -BUILDDIR=./sr_android_build +BUILDDIR=./build # Edit this to enable/disable/modify parallel compiles. PARALLEL="-j 2" diff --git a/cross-compile/linux/sigrok-cross-linux b/cross-compile/linux/sigrok-cross-linux index 1bb00fc..4886f5b 100755 --- a/cross-compile/linux/sigrok-cross-linux +++ b/cross-compile/linux/sigrok-cross-linux @@ -31,7 +31,7 @@ set -e PREFIX=$HOME/sr # The path where to download files to and where to build packages. -BUILDDIR=./sr_linux_build +BUILDDIR=./build # Edit this to enable/disable/modify parallel compiles. PARALLEL="-j 2" diff --git a/cross-compile/mingw/sigrok-cross-mingw b/cross-compile/mingw/sigrok-cross-mingw index fc79e1a..7fba4f9 100755 --- a/cross-compile/mingw/sigrok-cross-mingw +++ b/cross-compile/mingw/sigrok-cross-mingw @@ -28,7 +28,7 @@ MXE=$HOME/mxe-git PREFIX=$HOME/sr_mingw # The path where to download files to and where to build packages. -BUILDDIR=./sr_mingw_build +BUILDDIR=./build # Edit this to enable/disable/modify parallel compiles. PARALLEL="-j 2"