ruki 2 년 전
부모
커밋
a87071abcc
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      configure

+ 2 - 2
configure

@@ -236,9 +236,9 @@ _os_find() {
     local depth="${3}"
     if test_nz "${depth}"; then
         if is_host "macosx"; then
-            _ret=$(find "${dir}" -type f -depth "${depth}" -name "${name}")
+            _ret=$(find "${dir}" -depth "${depth}" -type f -name "${name}")
         else
-            _ret=$(find "${dir}" -type f -maxdepth "${depth}" -mindepth "${depth}" -name "${name}")
+            _ret=$(find "${dir}" -maxdepth "${depth}" -mindepth "${depth}" -type f -name "${name}")
         fi
     else
         _ret=$(find "${dir}" -type f -name "${name}")