summaryrefslogtreecommitdiff
path: root/beanshell
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-07-10 13:06:47 +0200
committerMichael Stahl <mstahl@redhat.com>2012-07-10 13:06:47 +0200
commit4fb8a68b0b70243b9c272764cd4762ad5ebf4054 (patch)
tree6ef3c4dd2ccf114d26f14cc78eb3c2f6d1fa9d42 /beanshell
parentc06bba0999451c1fee02f10587f8139edaddf7d9 (diff)
quote $ANT in makefiles so path with spaces works
Diffstat (limited to 'beanshell')
-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 ------------------------------------------------------