Procházet zdrojové kódy

refresh list of required tools

Waldemar Brodkorb před 10 roky
rodič
revize
0b3dfd5b3e
2 změnil soubory, kde provedl 9 přidání a 6 odebrání
  1. 3 0
      README
  2. 6 6
      scripts/scan-tools.sh

+ 3 - 0
README

@@ -15,6 +15,9 @@ Before you can start you need to install some tools:
 - patch
 - gzip
 - bzip2
+- lzop
+- lzma
+- xz
 - wget
 - libc headers
 - ncurses5 headers

+ 6 - 6
scripts/scan-tools.sh

@@ -112,6 +112,12 @@ if ! which gzip >/dev/null 2>&1; then
 	out=1
 fi
 
+if ! which bzip2 >/dev/null 2>&1; then
+	echo You must install bzip2 to continue.
+	echo
+	out=1
+fi
+
 if ! which lzop >/dev/null 2>&1; then
 	echo You must install lzop to continue.
 	echo
@@ -130,12 +136,6 @@ if ! which xz >/dev/null 2>&1; then
 	out=1
 fi
 
-if ! which bzip2 >/dev/null 2>&1; then
-	echo You must install bzip2 to continue.
-	echo
-	out=1
-fi
-
 if ! which patch >/dev/null 2>&1; then
 	echo You must install patch to continue.
 	echo