diff options
author | Matthias Klose <doko@ubuntu.com> | 2012-12-19 16:39:23 +0000 |
---|---|---|
committer | Matthias Klose <doko@gcc.gnu.org> | 2012-12-19 16:39:23 +0000 |
commit | baeb2e16475b278e83fe73751d4f0f572805b16e (patch) | |
tree | e1cfcd291b1ffa4f81f2941b5153971f7eacec85 | |
parent | 6ce8fd9d2b8ed9e9a8e1fb22d8e2e39b0b74161b (diff) | |
download | gcc-baeb2e16475b278e83fe73751d4f0f572805b16e.zip gcc-baeb2e16475b278e83fe73751d4f0f572805b16e.tar.gz gcc-baeb2e16475b278e83fe73751d4f0f572805b16e.tar.bz2 |
t-kfreebsd (MULTIARCH_DIRNAME): Add comma to separate arguments in make function.
2012-12-19 Matthias Klose <doko@ubuntu.com>
* config/i386/t-kfreebsd (MULTIARCH_DIRNAME): Add comma to
separate arguments in make function.
From-SVN: r194617
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/t-kfreebsd | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index be21ba9..2a76488 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-12-19 Matthias Klose <doko@ubuntu.com> + + * config/i386/t-kfreebsd (MULTIARCH_DIRNAME): Add comma to + separate arguments in make function. + 2012-12-19 Uros Bizjak <ubizjak@gmail.com> Yuri Rumyantsev <ysrumyan@gmail.com> diff --git a/gcc/config/i386/t-kfreebsd b/gcc/config/i386/t-kfreebsd index b8338a9..762d520 100644 --- a/gcc/config/i386/t-kfreebsd +++ b/gcc/config/i386/t-kfreebsd @@ -2,4 +2,4 @@ MULTIARCH_DIRNAME = $(call if_multiarch,i386-kfreebsd-gnu) # MULTILIB_OSDIRNAMES are set in t-linux64. KFREEBSD_OS = $(filter kfreebsd%, $(word 3, $(subst -, ,$(target)))) -MULTILIB_OSDIRNAMES := $(filter-out mx32=% $(subst linux,$(KFREEBSD_OS),$(MULTILIB_OSDIRNAMES))) +MULTILIB_OSDIRNAMES := $(filter-out mx32=%,$(subst linux,$(KFREEBSD_OS),$(MULTILIB_OSDIRNAMES))) |