aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2019-12-11 22:41:43 +0100
committercbdev <cb@cbcdn.com>2019-12-11 22:41:43 +0100
commite60eff52920cf063e7625344764521a791c8be3e (patch)
tree75cb2e8e4d15c79ec2c04bb875c3f6543bea9056 /Makefile
parentec01135171e4a57450e0250cf08cd4d60a8ad9ee (diff)
downloadmidimonster-e60eff52920cf063e7625344764521a791c8be3e.tar.gz
midimonster-e60eff52920cf063e7625344764521a791c8be3e.tar.bz2
midimonster-e60eff52920cf063e7625344764521a791c8be3e.zip
Remove unnecessary quotes
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1f6f212..75c9d0d 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ CFLAGS += -fvisibility=hidden
midimonster: LDLIBS = -ldl
# Replace version string with current git-describe if possible
ifneq "$(GITVERSION)" ""
-midimonster: CFLAGS += "-DMIDIMONSTER_VERSION=\"$(GITVERSION)\""
+midimonster: CFLAGS += -DMIDIMONSTER_VERSION=\"$(GITVERSION)\"
endif
# Work around strange linker passing convention differences in Linux and OSX