From 2a0996cae883d99dc48c3809e3038397e3cef9c4 Mon Sep 17 00:00:00 2001 From: obrien Date: Sun, 4 Apr 1999 22:46:18 +0000 Subject: Fix space padding that was causing a problem in creating the final CPP_PREDEFINES. --- contrib/gcc/config/freebsd.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'contrib/gcc') diff --git a/contrib/gcc/config/freebsd.h b/contrib/gcc/config/freebsd.h index e3aa472..bddb786 100644 --- a/contrib/gcc/config/freebsd.h +++ b/contrib/gcc/config/freebsd.h @@ -61,8 +61,9 @@ Boston, MA 02111-1307, USA. */ || !strcmp (STR, "soname") || !strcmp (STR, "defsym") \ || !strcmp (STR, "assert") || !strcmp (STR, "dynamic-linker")) - -#define CPP_FBSD_PREDEFINES "-Dunix -D__ELF__ -D__FreeBSD__=4 -D__FreeBSD_cc_version=400002 -Asystem(unix) -Asystem(FreeBSD)" +/* Place spaces around this string. We depend on string splicing to produce + the final CPP_PREDEFINES value. */ +#define CPP_FBSD_PREDEFINES " -Dunix -D__ELF__ -D__FreeBSD__=4 -D__FreeBSD_cc_version=400002 -Asystem(unix) -Asystem(FreeBSD) " /* Code generation parameters. */ -- cgit v1.1