Skip to content

Commit f1fdab4

Browse files
committed
[script] Fix broken substitution for libpath patch name
1 parent 4ec2fb1 commit f1fdab4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/fetch.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ if [ ! -d "$JDKDIR" ]; then
8484

8585
# apply the EV3-specific patches
8686
echo "[FETCH] Patching the source tree"
87-
patch -p1 -i "$SCRIPTDIR/$PATCHVER.patch"
87+
patch -p1 -i "$SCRIPTDIR/${PATCHVER}.patch"
8888
# debian library path
89-
patch -p1 -i "$SCRIPTDIR/$PATCHVER_lib.patch"
89+
patch -p1 -i "$SCRIPTDIR/${PATCHVER}_lib.patch"
9090

9191
else
9292
echo "[FETCH] Directory for JDK repository exists, assuming everything has been done already." 2>&1

0 commit comments

Comments
 (0)