summaryrefslogtreecommitdiff
path: root/recipes-graphics/wayland/weston-init.bbappend
blob: 1833c74cabed20491af9e84e65ce996987738d6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
INI_UNCOMMENT_ASSIGNMENTS:append:mx8 = " \
    use-g2d=1 \
"


uncomment() {
    # already uncommented, do nothing
    if ! (grep "^$1" $2); then
        if ! (grep "^#$1" $2); then
            bbfatal "Commented setting '#$1' not found in file $2"
        fi
        sed -i -e 's,^#'"$1"','"$1"',g' $2
    fi
}