diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-01-21 11:04:23 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-01-21 11:06:14 +0100 |
commit | 57fcb893661f1baf5e785acd862d7d6b19ea41cb (patch) | |
tree | f1c5d9395b9e27e1ef6121df4f8ad9835464bcf1 /profiles/arch/sparc | |
parent | app-editors/hteditor: update to EAPI 6 and add ncurses slot dep (diff) | |
download | gentoo-57fcb893661f1baf5e785acd862d7d6b19ea41cb.tar.gz gentoo-57fcb893661f1baf5e785acd862d7d6b19ea41cb.tar.bz2 gentoo-57fcb893661f1baf5e785acd862d7d6b19ea41cb.zip |
profiles: Fix unquoted var references in make.defaults
Fix variable references in make.defaults to always use double quotes, as
required by PMS 5.2.4:
> Each line contains a single VAR="value" entry, where the value must be
> double quoted.
Diffstat (limited to 'profiles/arch/sparc')
-rw-r--r-- | profiles/arch/sparc/make.defaults | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/profiles/arch/sparc/make.defaults b/profiles/arch/sparc/make.defaults index 0dcda48a9d41..8f16e0728502 100644 --- a/profiles/arch/sparc/make.defaults +++ b/profiles/arch/sparc/make.defaults @@ -30,7 +30,7 @@ CTARGET_sparc32="sparc-unknown-linux-gnu" # Compiler flags CFLAGS="-O2 -mcpu=ultrasparc -pipe" -CXXFLAGS=${CFLAGS} +CXXFLAGS="${CFLAGS}" # These are here to override features/32bit-userland's settings. DO NOT REMOVE! FEATURES="-multilib-strict" |