diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-07-10 13:06:47 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-07-10 13:06:47 +0200 |
commit | 4fb8a68b0b70243b9c272764cd4762ad5ebf4054 (patch) | |
tree | 6ef3c4dd2ccf114d26f14cc78eb3c2f6d1fa9d42 /beanshell | |
parent | c06bba0999451c1fee02f10587f8139edaddf7d9 (diff) |
quote $ANT in makefiles so path with spaces works
Diffstat (limited to 'beanshell')
-rw-r--r-- | beanshell/makefile.mk | 2 |
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 ------------------------------------------------------ |