]> git.pld-linux.org Git - packages/rpm-build-tools.git/commitdiff
wget 1.13.3 returns exit status 3 for --help; allow that
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Sun, 4 Sep 2011 18:38:00 +0000 (18:38 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    pldnotify.awk -> 1.100

pldnotify.awk

index fa19fb70ae19655d10eca2fe290731d9cf1f9cd7..265a7687b7bdd785827e8e1f42d4fd287cd76424 100644 (file)
@@ -655,7 +655,7 @@ BEGIN {
        # DEBUG = 1
 
        errno=system("wget --help > /dev/null 2>&1")
-       if (errno) {
+       if (errno && errno != 3) {
                print "No wget installed!"
                exit 1
        }
This page took 0.046569 seconds and 4 git commands to generate.