Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 227649 Details for
Bug 315037
app-portage/gentoolkit-0.3.0_rc10-r1: euse fails when PORTDIR contains special characters
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
The patch to fix the quoting of profilepath (partially)
euse-profilepath-quoting.diff (text/plain), 1.21 KB, created by
Michał Górny
on 2010-04-13 19:26:27 UTC
(
hide
)
Description:
The patch to fix the quoting of profilepath (partially)
Filename:
MIME Type:
Creator:
Michał Górny
Created:
2010-04-13 19:26:27 UTC
Size:
1.21 KB
patch
obsolete
>--- euse.orig 2010-04-13 21:15:24.377132131 +0200 >+++ euse 2010-04-13 21:24:31.525560851 +0200 >@@ -201,13 +201,13 @@ get_all_make_defaults() { > local parent > local rvalue > >- curdir="${1:-$(get_real_path ${MAKE_PROFILE_PATH})}" >+ curdir="${1:-$(get_real_path "${MAKE_PROFILE_PATH}")}" > > [ -f "${curdir}/make.defaults" ] && rvalue="${curdir}/make.defaults ${rvalue}" > if [ -f "${curdir}/parent" ]; then >- for parent in $(egrep -v '(^#|^ *$)' ${curdir}/parent); do >- pdir="$(get_real_path ${curdir}/${parent})" >- rvalue="$(get_all_make_defaults ${pdir}) ${rvalue}" >+ for parent in $(egrep -v '(^#|^ *$)' "${curdir}/parent"); do >+ pdir="$(get_real_path "${curdir}/${parent}")" >+ rvalue="$(get_all_make_defaults "${pdir}") ${rvalue}" > done > fi > >@@ -222,8 +222,8 @@ get_make_defaults() { > curdir="${1:-$(get_real_path ${MAKE_PROFILE_PATH})}" > > if [ ! -f "${curdir}/make.defaults" -a -f "${curdir}/parent" ]; then >- for parent in $(egrep -v '(^#|^ *$)' ${curdir}/parent); do >- if [ -f "$(get_make_defaults ${curdir}/${parent})" ]; then >+ for parent in $(egrep -v '(^#|^ *$)' "${curdir}/parent"); do >+ if [ -f "$(get_make_defaults "${curdir}/${parent}")" ]; then > curdir="${curdir}/${parent}" > break > fi
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 315037
: 227649 |
271061