diff --git a/tools/make-extra-dist.sh b/tools/make-extra-dist.sh index 3adee6852c51fbe3c45a9aa0b7d37a5485e0d0ca..76ae102ad7bdd74e5c12c2e1f12be4c81f6cc65b 100755 --- a/tools/make-extra-dist.sh +++ b/tools/make-extra-dist.sh @@ -94,12 +94,12 @@ install ${GROUP} ${OWNER} -m 0755 $TARGET/motif/server/motifd \ # Install the contrib stuff. Create the directories and then copy the files. -for d in `(cd src; find contrib -type d -print | grep -v "CVS\|asdf\|defsystem")` +for d in `(cd src; find contrib -type d -print | egrep -v "CVS|asdf|defsystem")` do install -d ${GROUP} ${OWNER} -m 0755 $DESTDIR/lib/cmucl/lib/$d done -for f in `(cd src/contrib; find . -type f -print | grep -v "CVS\|asdf\|defsystem")` +for f in `(cd src/contrib; find . -type f -print | egrep -v "CVS|asdf|defsystem")` do FILE=`basename $f` DIR=`dirname $f` @@ -108,13 +108,13 @@ done # Install all the locale data. -for d in `(cd src/i18n/; find locale -type d -print | grep -v CVS)` +for d in `(cd src/i18n/; find locale -type d -print | egrep -v CVS)` do install -d ${GROUP} ${OWNER} -m 0755 $DESTDIR/lib/cmucl/lib/$d done # Install mo files. -for f in `(cd $TARGET/i18n; find locale -type f -print | grep -v 'CVS\|~.*~\|.*~')` +for f in `(cd $TARGET/i18n; find locale -type f -print | egrep -v 'CVS|~.*~|.*~')` do FILE=`basename $f` DIR=`dirname $f` @@ -122,7 +122,7 @@ do done # Install po files -for f in `(cd src/i18n; find locale -type f -print | grep -v 'CVS\|~.*~\|.*~')` +for f in `(cd src/i18n; find locale -type f -print | egrep -v 'CVS|~.*~|.*~')` do FILE=`basename $f` DIR=`dirname $f` diff --git a/tools/make-main-dist.sh b/tools/make-main-dist.sh index 82b967735f50c66bdb2196a52cbbe357bccec53b..aeea5f823e91ad9dd216712960c442e876522724 100755 --- a/tools/make-main-dist.sh +++ b/tools/make-main-dist.sh @@ -139,17 +139,6 @@ do install ${GROUP} ${OWNER} -m 0644 src/$f $DESTDIR/lib/cmucl/lib/$f done -# Touch the fasl files for asdf and defsystem, so we don't get notes -# about the source being newer than object. -sleep 1; -touch $DESTDIR/lib/cmucl/lib/contrib/asdf/asdf.$FASL -touch $DESTDIR/lib/cmucl/lib/contrib/defsystem/defsystem.$FASL -if [ "$FASL" = "x86f" ]; then - # For x87, we want both x86f and sse2f - touch $DESTDIR/lib/cmucl/lib/contrib/asdf/asdf.x86f - touch $DESTDIR/lib/cmucl/lib/contrib/defsystem/defsystem.x86f -fi - install ${GROUP} ${OWNER} -m 0644 src/general-info/cmucl.1 \ $DESTDIR/${MANDIR}/ install ${GROUP} ${OWNER} -m 0644 src/general-info/lisp.1 \