diff options
Diffstat (limited to 'scripts/get_linux_config.sh')
-rwxr-xr-x | scripts/get_linux_config.sh | 6 |
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 |