소스 검색

avoid warning, when dir contains spaces

Waldemar Brodkorb 13 년 전
부모
커밋
3b9c4ca7bf
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      scripts/reloc.sh

+ 1 - 1
scripts/reloc.sh

@@ -4,7 +4,7 @@
 olddir=$(grep "^TOPDIR" prereq.mk 2>/dev/null |cut -d '=' -f 2)
 newdir=$(pwd)
 
-if [ ! -z $olddir ];then
+if [ ! -z "$olddir" ];then
   if [ "$olddir" != "$newdir" ];then
 	echo "adk directory relocated!"
 	echo "old directory: $olddir"