summaryrefslogtreecommitdiff
path: root/scripts/get_linux_config.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/get_linux_config.sh')
-rwxr-xr-xscripts/get_linux_config.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/get_linux_config.sh b/scripts/get_linux_config.sh
index 5cd0e371f..6c0003685 100755
--- a/scripts/get_linux_config.sh
+++ b/scripts/get_linux_config.sh
@@ -23,7 +23,7 @@ LINUX_MINOR_VERSION=${LINUX26_DIR:13}
function DBG_PRINT
{
- if [ ${DEBUG} == 1 ] ; then
+ if [ ${DEBUG} = 1 ] ; then
echo $1
fi
}
@@ -50,8 +50,8 @@ for i in ${CONFIGS} ; do
echo Copying `basename $i`.config ...
cp $i.config ${LINUX26_CONFIG}
elif [ ${THIS_MAJOR} -eq ${LINUX_MAJOR_VERSION} ] ; then
- if [ "${LINUX_MINOR_VERSION}X" == "X" ] ; then
- if [ "${THIS_MINOR}X" == "X" ] ; then
+ if [ "${LINUX_MINOR_VERSION}X" = "X" ] ; then
+ if [ "${THIS_MINOR}X" = "X" ] ; then
echo Copying `basename $i`.config ...
cp $i.config ${LINUX26_CONFIG}
else