Преглед изворни кода

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