Waldemar Brodkorb 14 лет назад
Родитель
Сommit
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