aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-08-09 16:30:47 +0000
committerDavid Robillard <d@drobilla.net>2008-08-09 16:30:47 +0000
commiteb4770ab118fc4a77500178c422a557ffcf1cad7 (patch)
tree279d4ce1e41d186f629aae5de74d07c7ed67a8e4
parente0c4ef55fe4a8f474cd2da0585a9c280a06e48a8 (diff)
downloadmda.lv2-eb4770ab118fc4a77500178c422a557ffcf1cad7.tar.gz
mda.lv2-eb4770ab118fc4a77500178c422a557ffcf1cad7.tar.bz2
mda.lv2-eb4770ab118fc4a77500178c422a557ffcf1cad7.zip
Switch if [ ] for if test (more portable?).
git-svn-id: http://svn.drobilla.net/lad/mda-lv2@1332 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 41f3d5a..9d276bf 100644
--- a/Makefile
+++ b/Makefile
@@ -50,7 +50,7 @@ data: libs lvz/gendata
cd ./mda.lv2 && ../lvz/gendata ./*.so > manifest.ttl
install:
- if [ "$(INSTALL_DIR)" == "" ]; then \
+ if test "$(INSTALL_DIR)" == ""; then \
echo -e "\n*** ERROR: INSTALL_DIR is not set\n"; \
echo -e "Try make install-user, install-local, or install-system\n"; \
echo -e "You can also specify where to install the plugin bundle:"; \