>>> Compiling source in /var/tmp/portage/kbd-1.12-r6/work/kbd-1.12 ... PREFIX must have a leading slash
Created attachment 83505 [details, diff] Proposed patch for ./configure Substitutes a-zA-Z0-9 for [:alnum:] in sed statement.
Probably a better idea to use LC_ALL=C with that sed, since it's not meant to allow things like
Probably a better idea to use LC_ALL=C with that sed, since it's not meant to allow things like รค. --- configure +++ configure @@ -15,7 +15,7 @@ for arg in $*; do case "$arg" in - -*=*) optarg=`echo "$arg" | sed 's/[-_a-zA-Z0-9]*=//'` ;; + -*=*) optarg=`echo "$arg" | LC_ALL=C sed 's/[-_a-zA-Z0-9]*=//'` ;; *) optarg= ;; esac
should be fixed now
(In reply to comment #3) > should be fixed now > Yes it is. Thanks.