Raymond Toy pushed to branch master at cmucl / cmucl

Commits:

2 changed files:

Changes:

  • bin/clean-target.sh
    ... ... @@ -48,10 +48,10 @@ CORE='-o -name "*.core"'
    48 48
     
    
    49 49
     if [ -n "$KEEP" ]; then
    
    50 50
         case $KEEP in
    
    51
    -      lib) GREP='egrep -v'
    
    51
    +      lib) GREP='grep -Ev'
    
    52 52
     	   PATTERN='(gray-streams|gray-compat|simple-streams|iodefs|external-formats|clx|hemlock|clm)-library' ;;
    
    53 53
           core) CORE='' ;;
    
    54
    -      all) GREP='egrep -v'
    
    54
    +      all) GREP='grep -Ev'
    
    55 55
     	   PATTERN='(gray-streams|gray-compat|simple-streams|iodefs|external-formats|clx|hemlock|clm)-library|(asdf|defsystem)'
    
    56 56
     	   CORE='' ;;
    
    57 57
         esac
    

  • bin/make-extra-dist.sh
    ... ... @@ -94,12 +94,12 @@ install ${GROUP} ${OWNER} -m 0755 $TARGET/motif/server/motifd \
    94 94
     
    
    95 95
     # Install the contrib stuff.  Create the directories and then copy the files.
    
    96 96
     
    
    97
    -for d in `(cd src; find contrib -type d -print | egrep -v "CVS|asdf|defsystem")`
    
    97
    +for d in `(cd src; find contrib -type d -print | grep -E -v "CVS|asdf|defsystem")`
    
    98 98
     do
    
    99 99
         install -d ${GROUP} ${OWNER} -m 0755 $DESTDIR/lib/cmucl/lib/$d
    
    100 100
     done
    
    101 101
     
    
    102
    -for f in `(cd src/contrib; find . -type f -print | egrep -v "CVS|asdf|defsystem|unix")`
    
    102
    +for f in `(cd src/contrib; find . -type f -print | grep -E -v "CVS|asdf|defsystem|unix")`
    
    103 103
     do
    
    104 104
         FILE=`basename $f`
    
    105 105
         DIR=`dirname $f`
    
    ... ... @@ -108,13 +108,13 @@ done
    108 108
     
    
    109 109
     # Install all the locale data.
    
    110 110
     
    
    111
    -for d in `(cd src/i18n/; find locale -type d -print | egrep -v CVS)`
    
    111
    +for d in `(cd src/i18n/; find locale -type d -print | grep -E -v CVS)`
    
    112 112
     do
    
    113 113
         install -d ${GROUP} ${OWNER} -m 0755 $DESTDIR/lib/cmucl/lib/$d
    
    114 114
     done
    
    115 115
     
    
    116 116
     # Install mo files.
    
    117
    -for f in `(cd $TARGET/i18n; find locale -type f -print | egrep -v 'CVS|~.*~|.*~')`
    
    117
    +for f in `(cd $TARGET/i18n; find locale -type f -print | grep -E -v 'CVS|~.*~|.*~')`
    
    118 118
     do
    
    119 119
         FILE=`basename $f`
    
    120 120
         DIR=`dirname $f`
    
    ... ... @@ -122,7 +122,7 @@ do
    122 122
     done
    
    123 123
     
    
    124 124
     # Install po files.  (Do we really need to distribute the po files?)
    
    125
    -#for f in `(cd $TARGET/i18n; find locale -type f -print | egrep -v 'CVS|~.*~|.*~')`
    
    125
    +#for f in `(cd $TARGET/i18n; find locale -type f -print | grep -E -v 'CVS|~.*~|.*~')`
    
    126 126
     #do
    
    127 127
     #    FILE=`basename $f`
    
    128 128
     #    DIR=`dirname $f`