diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-30 14:18:47 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-12-02 08:02:19 +0100 |
commit | ac5d4693ce4ec3fc1b10c83c27d09ca61de8188f (patch) | |
tree | c61d2dc248c5378b6bcf8c1c2a6f34adc34c7e2f | |
parent | 72b17442010d512f6cf96a871409b1777ed08748 (diff) |
Fix quoting
Change-Id: I4a4a7c4a1596837c2f221d856228d7d26482ede3
-rw-r--r-- | sal/Library_sal.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/Library_sal.mk b/sal/Library_sal.mk index 79a0e2a6ead4..ee25cd20d080 100644 --- a/sal/Library_sal.mk +++ b/sal/Library_sal.mk @@ -28,8 +28,8 @@ $(eval $(call gb_Library_add_defs,sal,\ ) \ $(LFS_CFLAGS) \ -DSAL_DLLIMPLEMENTATION \ - -DRTL_OS="\"$(RTL_OS)"\" \ - -DRTL_ARCH="\"$(RTL_ARCH)"\" \ + -DRTL_OS="\"$(RTL_OS)\"" \ + -DRTL_ARCH="\"$(RTL_ARCH)\"" \ -DSRCDIR="\"$(SRCDIR)\"" \ )) |