Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 577810 | Differences between
and this patch

Collapse All | Expand All

(-)a/scripts/create_config (-1 / +9 lines)
Lines 61-66 case $line in Link Here
61
    value=${line#*=}
61
    value=${line#*=}
62
    echo "#define $name $value"
62
    echo "#define $name $value"
63
    ;;
63
    ;;
64
 HAVE_*=y) # configuration
65
    name=${line%=*}
66
    echo "#define $name 1"
67
    ;;
68
 HAVE_*=*) # configuration
69
    name=${line%=*}
70
    value=${line#*=}
71
    echo "#define $name $value"
72
    ;;
64
 ARCH=*) # configuration
73
 ARCH=*) # configuration
65
    arch=${line#*=}
74
    arch=${line#*=}
66
    arch_name=`echo $arch | LC_ALL=C tr '[a-z]' '[A-Z]'`
75
    arch_name=`echo $arch | LC_ALL=C tr '[a-z]' '[A-Z]'`
67
- 

Return to bug 577810