diff options
author | David Robillard <d@drobilla.net> | 2008-08-09 16:54:50 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-08-09 16:54:50 +0000 |
commit | 23ba92667b8b7946a60de0404067dde12b5693d8 (patch) | |
tree | dba40c307ab8686bbe7d3a76914f630b374d2984 | |
parent | eb4770ab118fc4a77500178c422a557ffcf1cad7 (diff) | |
download | mda.lv2-23ba92667b8b7946a60de0404067dde12b5693d8.tar.gz mda.lv2-23ba92667b8b7946a60de0404067dde12b5693d8.tar.bz2 mda.lv2-23ba92667b8b7946a60de0404067dde12b5693d8.zip |
Yet more vain attempts at make install portability.
git-svn-id: http://svn.drobilla.net/lad/mda-lv2@1333 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ data: libs lvz/gendata cd ./mda.lv2 && ../lvz/gendata ./*.so > manifest.ttl install: - if test "$(INSTALL_DIR)" == ""; then \ + if [ "x$(INSTALL_DIR)" == "x" ]; 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:"; \ |