diff options
author | cbdev <cb@cbcdn.com> | 2019-12-11 22:41:43 +0100 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2019-12-11 22:41:43 +0100 |
commit | e60eff52920cf063e7625344764521a791c8be3e (patch) | |
tree | 75cb2e8e4d15c79ec2c04bb875c3f6543bea9056 /Makefile | |
parent | ec01135171e4a57450e0250cf08cd4d60a8ad9ee (diff) | |
download | midimonster-e60eff52920cf063e7625344764521a791c8be3e.tar.gz midimonster-e60eff52920cf063e7625344764521a791c8be3e.tar.bz2 midimonster-e60eff52920cf063e7625344764521a791c8be3e.zip |
Remove unnecessary quotes
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |