Przeglądaj źródła

freebsd cpio is in /usr/bin

Waldemar Brodkorb 14 lat temu
rodzic
commit
91e7244abc
1 zmienionych plików z 5 dodań i 1 usunięć
  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