Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMat Booth2018-04-27 16:48:02 +0000
committerMat Booth2018-05-18 20:29:51 +0000
commit08c53a9b5dbfb891625f9b8e17da633bffdc424f (patch)
treebb80a112205f2614b9861a27fb9c3e2e66b21ce6
parentcbcd9e4126c378ced87c6627c6a0bea641b4845f (diff)
downloadrt.equinox.framework-08c53a9b5dbfb891625f9b8e17da633bffdc424f.tar.gz
rt.equinox.framework-08c53a9b5dbfb891625f9b8e17da633bffdc424f.tar.xz
rt.equinox.framework-08c53a9b5dbfb891625f9b8e17da633bffdc424f.zip
The wild card is not honoured by the case switch when inside a string literal. Change-Id: I49dd7f69674764bd2ee0306a5dd78098912fc946 Signed-off-by: Mat Booth <mat.booth@redhat.com>
-rwxr-xr-xfeatures/org.eclipse.equinox.executable.feature/library/gtk/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/library/gtk/build.sh b/features/org.eclipse.equinox.executable.feature/library/gtk/build.sh
index 566a0526f..0766b3f39 100755
--- a/features/org.eclipse.equinox.executable.feature/library/gtk/build.sh
+++ b/features/org.eclipse.equinox.executable.feature/library/gtk/build.sh
@@ -121,7 +121,7 @@ case $defaultOS in
defaultJava=DEFAULT_JAVA_EXEC
OUTPUT_DIR="$EXEC_DIR/contributed/$defaultWS/$defaultOS/$defaultOSArch"
;;
- "arm*")
+ arm*)
defaultOSArch="arm"
defaultJava=DEFAULT_JAVA_EXEC
OUTPUT_DIR="$EXEC_DIR/bin/$defaultWS/$defaultOS/$defaultOSArch"

Back to the top