Move the default empty compiler flag settings from
authorZac Medico <zmedico@gentoo.org>
Wed, 26 Mar 2008 16:54:19 +0000 (16:54 -0000)
committerZac Medico <zmedico@gentoo.org>
Wed, 26 Mar 2008 16:54:19 +0000 (16:54 -0000)
ebuild.sh to make.globals (bug #214499).

svn path=/main/trunk/; revision=9511

bin/ebuild.sh
cnf/make.globals

index e773c5558815259d19ab3487950ebc699c4d250a..b522f8db0d1974c673e99908ab907af920d0e7cd 100755 (executable)
@@ -273,12 +273,6 @@ export LIBOPTIONS="-m0644"
 export DIROPTIONS="-m0755"
 export MOPREFIX=${PN}
 
-# When compiler flags are unset, many packages will substitute their own
-# implicit flags. For uniformity, use an empty string as the default.
-[ "${CFLAGS-unset}"    == "unset" ] && export CFLAGS=""
-[ "${CXXFLAGS-unset}"  == "unset" ] && export CXXFLAGS=""
-[ "${LDFLAGS-unset}"   == "unset" ] && export LDFLAGS=""
-
 check_KV() {
        if [ -z "${KV}" ]; then
                eerror ""
index 0fd503c4b927e8c9307cc395d51def0f8ce1d634..36d8591ae76edac173ab30769c0156bd55034bd3 100644 (file)
 # **  USE, CONFIG_*, and FEATURES are incremental  **
 # ***************************************************
 
+# When compiler flags are unset, many packages will substitute their own
+# implicit flags. For uniformity, use an empty string as the default.
+CFLAGS=""
+CXXFLAGS=""
+LDFLAGS=""
 
 # Default rsync mirror
 SYNC="rsync://rsync.gentoo.org/gentoo-portage"