summaryrefslogtreecommitdiff
path: root/package/tidlc.install.linux
blob: 01fc3748bfaca6d61c63c1d7f1e8dbd9ea4f6ad9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash -x

s=`cat ${HOME}/.bashrc | grep -n "## Tizen SDK configuration" | cut -f1 -d":"`

if [ "x${s}" = "x" ] ; then
    cat >> ${HOME}/.bashrc << END
## Tizen SDK configuration
# This is generated by Tizen SDK. Please do not modify by yourself.
export PATH=\$PATH:${INSTALLED_PATH}/platforms/tizen-5.0/common/tidl
## End Tizen SDK configuration
END
fi

source ${HOME}/.bashrc

exit 0