]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
m4 is now required on the host system for building the toolchain.
authorMichael Tremer <michael.tremer@ipfire.org>
Mon, 16 Jun 2008 15:42:56 +0000 (17:42 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Mon, 16 Jun 2008 15:42:56 +0000 (17:42 +0200)
tools/make-check

index 19c9e7f7fc3eaaf0025a263394147a1cfc3e0f7c..75d13acde2c59fb8eadc7a2495f4a7dc7266efce 100644 (file)
@@ -54,35 +54,36 @@ check_common() {
 }
 
 check_toolchain() {    
-       check_common "GNU Bash"                 "2.05a"         "bash --version | head -n1 | cut -d\" \" -f2-4"
+       check_common "GNU Bash"         "2.05a"         "bash --version | head -n1 | cut -d\" \" -f2-4"
        check_common "/bin/sh links bash?"              "if ! which sh; then echo \"command not found\"; fi"
        check_common "GNU Binutils"     "2.12"          "ld --version | head -n1 | cut -d\" \" -f3-" "Binutils: "
-       check_common "GNU Bison"                "1.875"         "bison --version | head -n1"
+       check_common "GNU Bison"        "1.875"         "bison --version | head -n1"
        check_common "/usr/bin/yacc links bison?"       "if ! which yacc; then echo \"command not found\"; fi"
-       check_common "Bzip2"                            "1.0.2"         "bzip2 --version 2>&1 < /dev/null | head -n1 | cut -d\" \" -f1,6-"
-       check_common "Coreutils"                "5.0"                   "chown --version | head -n1 | cut -d\")\" -f2" "Coreutils:"
-       check_common "Diffutils"                "2.8"                   "diff --version | head -n1"
-       check_common "Findutils"                "4.1.20"        "find --version | head -n1"
-       check_common "GNU awk"                  "3.0"                   "gawk --version | head -n1"
+       check_common "Bzip2"            "1.0.2"         "bzip2 --version 2>&1 < /dev/null | head -n1 | cut -d\" \" -f1,6-"
+       check_common "Coreutils"        "5.0"           "chown --version | head -n1 | cut -d\")\" -f2" "Coreutils:"
+       check_common "Diffutils"        "2.8"           "diff --version | head -n1"
+       check_common "Findutils"        "4.1.20"        "find --version | head -n1"
+       check_common "GNU awk"          "3.0"           "gawk --version | head -n1"
        check_common "/bin/awk links gawk?"             "if ! which awk; then echo \"command not found\"; fi"
-       check_common "GNU CC"                           "3.0.1"         "gcc --version | head -n1"
-       check_common "GNU libc"                 "2.2.5"         "/lib/libc.so.6 | head -n1 | cut -d\" \" -f1-7"
-       check_common "GNU Grep"                 "2.5"                   "grep --version | head -n1"
-       check_common "GNU zip"                  "1.2.4"         "gzip --version | head -n1"
-       check_common "Linux 2.6"                "2.6.x"         "uname -r" "Linux: "
-       check_common "GNU make"                 "3.79.1"        "make --version | head -n1"
-       check_common "Patch"                            "2.5.4"         "patch --version | head -n1"
-       check_common "GNU sed"                  "3.0.2"         "sed --version | head -n1"
-       check_common "GNU tar"                  "1.14"          "tar --version | head -n1"
-       check_common "GNU Texinfo"      "4.8"                   "makeinfo --version | head -n1"
+       check_common "GNU CC"           "3.0.1"         "gcc --version | head -n1"
+       check_common "GNU libc"         "2.2.5"         "/lib/libc.so.6 | head -n1 | cut -d\" \" -f1-7"
+       check_common "GNU Grep"         "2.5"           "grep --version | head -n1"
+       check_common "GNU zip"          "1.2.4"         "gzip --version | head -n1"
+       check_common "Linux 2.6"        "2.6.x"         "uname -r" "Linux: "
+       check_common "GNU make"         "3.79.1"        "make --version | head -n1"
+       check_common "Patch"            "2.5.4"         "patch --version | head -n1"
+       check_common "GNU sed"          "3.0.2"         "sed --version | head -n1"
+       check_common "GNU tar"          "1.14"          "tar --version | head -n1"
+       check_common "GNU Texinfo"      "4.8"           "makeinfo --version | head -n1"
+       check_common "GNU m4"           "1.4.8"         "m4 --version | head -n1"
 }
 
 check_build() {
-       check_common "GNU make"                 "3.79.1"        "make --version | head -n1"
-       check_common "GNU wget"                                                         "wget --version | head -n1"
-       check_common "Git"                                                                              "git --version"
-       check_common "ncftp Client"                                             "echo \"quit\" | ncftp --version | head -n1"
-       check_common "GNU which"                                                        "which --version | head -n1"
+       check_common "GNU make"         "3.79.1"        "make --version | head -n1"
+       check_common "GNU wget"                         "wget --version | head -n1"
+       check_common "Git"                              "git --version"
+       check_common "ncftp Client"                     "echo \"quit\" | ncftp --version | head -n1"
+       check_common "GNU which"                        "which --version | head -n1"
 }
 
 check_rootfiles() {