diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-04-05 17:58:39 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-04-05 17:58:39 -0400 |
commit | f54e246c839f152fa6df5a8e58d7f072d5524c6e (patch) | |
tree | 1da095d70d63af308835bea04707c1de33d28da1 /gcc-config | |
parent | gcc-config: put native compilers before cross in $PATH (diff) | |
download | gcc-config-f54e246c839f152fa6df5a8e58d7f072d5524c6e.tar.gz gcc-config-f54e246c839f152fa6df5a8e58d7f072d5524c6e.tar.bz2 gcc-config-f54e246c839f152fa6df5a8e58d7f072d5524c6e.zip |
gcc-config: fix typo in ldpath setup in non-ld.so.conf.d case
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'gcc-config')
-rwxr-xr-x | gcc-config | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -375,7 +375,7 @@ switch_profile() { if [[ -d ${ROOT}/etc/ld.so.conf.d ]] ; then echo "${MY_LDPATH}" > "${ROOT}"/etc/ld.so.conf.d/05gcc-${CTARGET}.conf else - echo "LDPATH=\"${MY_LDPATH}\"" >> "${envd}tmp" + echo "LDPATH=\"${MY_LDPATH}\"" >> "${envd}.tmp" fi # Punt old files; maybe globs too much, but oh well |