summaryrefslogtreecommitdiff
path: root/tomcat
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-07-10 13:06:47 +0200
committerMichael Stahl <mstahl@redhat.com>2012-07-11 20:11:59 +0200
commit12d79f250011f49a9061d51cf79caacbd548d28a (patch)
tree5581ea020bc6f6bbced2e9ad80fabae79efe1f4c /tomcat
parent23942784731f3c0d0125299d111b4facf21441e9 (diff)
quote $ANT in makefiles so path with spaces works
(cherry picked from commit 4fb8a68b0b70243b9c272764cd4762ad5ebf4054) Signed-off-by: Bjoern Michaelsen <bjoern.michaelsen@canonical.com>
Diffstat (limited to 'tomcat')
-rw-r--r--tomcat/makefile.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/tomcat/makefile.mk b/tomcat/makefile.mk
index 9bdae76a41ab..27ac90277547 100644
--- a/tomcat/makefile.mk
+++ b/tomcat/makefile.mk
@@ -50,9 +50,9 @@ PATCH_FILES=tomcat.patch
BUILD_DIR=jakarta-servletapi-5
.IF "$(JAVACISGCJ)"=="yes"
-BUILD_ACTION=$(ANT)
+BUILD_ACTION="$(ANT)"
.ELSE
-BUILD_ACTION=$(ANT) -Dant.build.javac.source=$(JAVA_SOURCE_VER) -Dant.build.javac.target=$(JAVA_TARGET_VER)
+BUILD_ACTION="$(ANT)" -Dant.build.javac.source=$(JAVA_SOURCE_VER) -Dant.build.javac.target=$(JAVA_TARGET_VER)
.ENDIF
# --- Targets ------------------------------------------------------