Fix quoting when defining DEBIAN_JUCEPROJECT_LIBS
authorIOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org>
Wed, 22 Dec 2021 08:13:01 +0000 (09:13 +0100)
committerIOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org>
Wed, 22 Dec 2021 08:13:01 +0000 (09:13 +0100)
debian/rules

index 19608eddfb2c598bfbd39d3e8db3072019347ead..69b2d383a604786b00abfe48dd00a7548d77b2e8 100755 (executable)
@@ -32,7 +32,7 @@ DEB_COPYRIGHT_CHECK_IGNORE_REGEX = \
 noatomicarch = $(shell dpkg-architecture -qDEB_HOST_ARCH | egrep -x "(armel|powerpc|powerpcspe|m68k|mips|mipsel|sh4|riscv64)")
 # link with libatomic on architectures without built-in atomic
 ifeq ($(if $(noatomicarch),atomic), atomic)
-       DEB_CPPFLAGS_MAINT_APPEND += -DDEBIAN_JUCERPROJECT_LIBS='\"atomic\"'
+       DEB_CPPFLAGS_MAINT_APPEND += -DDEBIAN_JUCERPROJECT_LIBS='"atomic"'
        DEB_LDFLAGS_MAINT_APPEND += -latomic
 endif