aboutsummaryrefslogtreecommitdiff
path: root/libphobos/m4
diff options
context:
space:
mode:
authorIain Buclaw <ibuclaw@gdcproject.org>2019-04-16 05:58:25 +0000
committerIain Buclaw <ibuclaw@gcc.gnu.org>2019-04-16 05:58:25 +0000
commit5d71d6f24fee0385acfec934d4337061eb863c0f (patch)
tree263e6d8bec3cf62bef96a78aae0be43e39878b8f /libphobos/m4
parent80d3ca49f1dfad9f89d77e9667e44aecbcb33cd6 (diff)
downloadgcc-5d71d6f24fee0385acfec934d4337061eb863c0f.zip
gcc-5d71d6f24fee0385acfec934d4337061eb863c0f.tar.gz
gcc-5d71d6f24fee0385acfec934d4337061eb863c0f.tar.bz2
libphobos: Fix configure test for backtrace-supported.h
libphobos/ChangeLog: 2019-04-16 Iain Buclaw <ibuclaw@gdcproject.org> * config.h.in: Regenerate. * configure: Regenerate. * m4/druntime/libraries.m4 (DRUNTIME_LIBRARIES_BACKTRACE): Set CPPFLAGS correctly for backtrace support test. From-SVN: r270377
Diffstat (limited to 'libphobos/m4')
-rw-r--r--libphobos/m4/druntime/libraries.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/libphobos/m4/druntime/libraries.m4 b/libphobos/m4/druntime/libraries.m4
index 6e81fd9..a7aab4d 100644
--- a/libphobos/m4/druntime/libraries.m4
+++ b/libphobos/m4/druntime/libraries.m4
@@ -178,7 +178,7 @@ AC_DEFUN([DRUNTIME_LIBRARIES_BACKTRACE],
LIBBACKTRACE=../../libbacktrace/libbacktrace.la
gdc_save_CPPFLAGS=$CPPFLAGS
- CPPFLAGS+=" -I../libbacktrace "
+ CPPFLAGS="$CPPFLAGS -I../libbacktrace "
AC_CHECK_HEADER(backtrace-supported.h, have_libbacktrace_h=true,
have_libbacktrace_h=false)