diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2011-10-11 21:09:46 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2011-10-11 21:09:46 -0700 |
commit | 4c4ef907941bbebb9e4bfa0601b306ab32725519 (patch) | |
tree | 188b2e7e6523166115dc8bf0a2b4b2e1cf7868bd /Makefile | |
parent | 7df7518625b5a80aa1ff35c8c6e49e6e257672d9 (diff) | |
download | subsurface-4c4ef907941bbebb9e4bfa0601b306ab32725519.tar.gz |
Fix Makefile syntax error
it looks prettier, but we can't have a tab in front of the $(error)
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ else ifneq ($(strip $(libdc-usr)),) LIBDIVECOMPUTERINCLUDES = $(LIBDIVECOMPUTERDIR)/include/libdivecomputer LIBDIVECOMPUTERARCHIVE = -ldivecomputer else - $(error Cannot find libdivecomputer - please edit Makefile) +$(error Cannot find libdivecomputer - please edit Makefile) endif # Libusb-1.0 is only required if libdivecomputer was built with it. |