summaryrefslogtreecommitdiff
path: root/beanshell/makefile.mk
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 /beanshell/makefile.mk
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 'beanshell/makefile.mk')
-rw-r--r--beanshell/makefile.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/beanshell/makefile.mk b/beanshell/makefile.mk
index dc22223b20be..09b8427d8bf7 100644
--- a/beanshell/makefile.mk
+++ b/beanshell/makefile.mk
@@ -43,7 +43,7 @@ TARFILE_MD5=ea570af93c284aa9e5621cd563f54f4d
TARFILE_ROOTDIR=BeanShell
PATCH_FILES=bsh-2.0b1-src.patch
-BUILD_ACTION=$(ANT) $(ANT_FLAGS)
+BUILD_ACTION="$(ANT)" $(ANT_FLAGS)
# --- Targets ------------------------------------------------------