From 6c499bb15a62a8a9ae7109386940e2e838792a81 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Sun, 4 Apr 1999 22:46:18 +0000 Subject: [PATCH] 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(-) diff --git a/contrib/gcc/config/freebsd.h b/contrib/gcc/config/freebsd.h index e3aa4721287b..bddb78606090 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. */