]> git.pld-linux.org Git - packages/rpm-build-tools.git/commitdiff
- s/egrep/grep -E/
authorArtur Frysiak <artur@frysiak.net>
Mon, 3 Apr 2000 23:19:55 +0000 (23:19 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    builder.sh -> 1.56

builder.sh

index b0c8ba6b01f5f453d86db4348ce066645f986081..ad68050b6f5df3add1ad2f92d499e66481c64b4f 100644 (file)
@@ -215,20 +215,20 @@ get_all_files()
        fi
        for i in $SOURCES $PATCHES $ICONS; do
                if 
-                       echo $i | egrep -v '(http|ftp|https|cvs)://' |\
-                       egrep -q '\.(gz|bz2)$'
+                       echo $i | grep -vE '(http|ftp|https|cvs)://' |\
+                       grep -qE '\.(gz|bz2)$'
                then
                        echo "Warning: no URL given for $i"
                fi
                
                if      [ -z "$NOCVS" ]||\
-                       [ `echo $i | egrep -v '(ftp|http|https|cvs)://'` ]
+                       [ `echo $i | grep -vE '(ftp|http|https|cvs)://'` ]
                then
                        cvs $OPTIONS `nourl $i`
                fi
                
                if      [ -z "$NOURLS" ]&&[ ! -f "`nourl $i`" ]&&\
-                       [ `echo $i | egrep 'ftp://|http://|https://'` ]
+                       [ `echo $i | grep -E 'ftp://|http://|https://'` ]
                then
                        wget -c -nd -t0 "$i"
                fi
This page took 0.042593 seconds and 4 git commands to generate.