ソースを参照

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