소스 검색

freebsd cpio is in /usr/bin

Waldemar Brodkorb 14 년 전
부모
커밋
91e7244abc
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      scripts/cpio

+ 5 - 1
scripts/cpio

@@ -2,4 +2,8 @@
 # This file is part of the OpenADK project. OpenADK is copyrighted
 # material, please see the LICENCE file in the top-level directory.
 
-/bin/cpio --quiet "$@"
+if [ -x /usr/bin/cpio ];then
+	/usr/bin/cpio --quiet "$@"
+else
+	/bin/cpio --quiet "$@"
+fi