Skip to content

Commit 1ee689e

Browse files
committed
[script] Move jver.sh from /tmp to /build
1 parent 060017e commit 1ee689e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -e
33

44
cd "$(dirname ${BASH_SOURCE[0]})"
55
source config.sh
6-
source /tmp/jver.sh
6+
source "$BUILDDIR/jver.sh"
77

88
if [ "$SFLT_NEEDED" == "true" ]; then
99
echo "[BUILD] Building softfloat support"

scripts/fetch.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ if [ ! -d "$JDKDIR" ]; then
3535
fi
3636

3737
echo "[FETCH] Java version string: $JAVA_VERSION"
38-
echo -e "#!/bin/bash\nJAVA_VERSION=\"$JAVA_VERSION\"" >"/tmp/jver.sh"
38+
echo -e "#!/bin/bash\nJAVA_VERSION=\"$JAVA_VERSION\"" >"$BUILDDIR/jver.sh"
3939

4040
# apply the EV3-specific patches
4141
echo "[FETCH] Patching the source tree"

0 commit comments

Comments
 (0)