Raymond Toy pushed to branch master at cmucl / cmucl
Commits:
-
ea1f0b32
by Raymond Toy at 2024-08-22T20:20:51+00:00
-
e4b82cb4
by Raymond Toy at 2024-08-22T20:20:54+00:00
1 changed file:
Changes:
| ... | ... | @@ -93,13 +93,15 @@ install ${GROUP} ${OWNER} -m 0755 $TARGET/motif/server/motifd \ |
| 93 | 93 | $DESTDIR/lib/cmucl/lib/
|
| 94 | 94 | |
| 95 | 95 | # Install the contrib stuff. Create the directories and then copy the files.
|
| 96 | - |
|
| 97 | -for d in `(cd src; find contrib -type d -print | grep -E -v "CVS|asdf|defsystem")`
|
|
| 96 | +#
|
|
| 97 | +# asdf, defsystem and unix are part of the main distribution, so skip
|
|
| 98 | +# these directories.
|
|
| 99 | +for d in `(cd src; find contrib -type d -print | grep -v "asdf\|defsystem")`
|
|
| 98 | 100 | do
|
| 99 | 101 | install -d ${GROUP} ${OWNER} -m 0755 $DESTDIR/lib/cmucl/lib/$d
|
| 100 | 102 | done
|
| 101 | 103 | |
| 102 | -for f in `(cd src/contrib; find . -type f -print | grep -E -v "CVS|asdf|defsystem|unix")`
|
|
| 104 | +for f in `(cd src/contrib; find . -type f -print | grep -v "asdf\|defsystem\|unix")`
|
|
| 103 | 105 | do
|
| 104 | 106 | FILE=`basename $f`
|
| 105 | 107 | DIR=`dirname $f`
|
| ... | ... | @@ -108,13 +110,13 @@ done |
| 108 | 110 | |
| 109 | 111 | # Install all the locale data.
|
| 110 | 112 | |
| 111 | -for d in `(cd src/i18n/; find locale -type d -print | grep -E -v CVS)`
|
|
| 113 | +for d in `(cd src/i18n/; find locale -type d -print)`
|
|
| 112 | 114 | do
|
| 113 | 115 | install -d ${GROUP} ${OWNER} -m 0755 $DESTDIR/lib/cmucl/lib/$d
|
| 114 | 116 | done
|
| 115 | 117 | |
| 116 | -# Install mo files.
|
|
| 117 | -for f in `(cd $TARGET/i18n; find locale -type f -print | grep -E -v 'CVS|~.*~|.*~')`
|
|
| 118 | +# Install mo files. Ignore any emacs-style backup files.
|
|
| 119 | +for f in `(cd $TARGET/i18n; find locale -type f -print | grep -v '~.*~\|.*~')`
|
|
| 118 | 120 | do
|
| 119 | 121 | FILE=`basename $f`
|
| 120 | 122 | DIR=`dirname $f`
|
| ... | ... | @@ -122,7 +124,7 @@ do |
| 122 | 124 | done
|
| 123 | 125 | |
| 124 | 126 | # Install po files. (Do we really need to distribute the po files?)
|
| 125 | -#for f in `(cd $TARGET/i18n; find locale -type f -print | grep -E -v 'CVS|~.*~|.*~')`
|
|
| 127 | +#for f in `(cd $TARGET/i18n; find locale -type f -print | grep -v '~.*~\|.*~')`
|
|
| 126 | 128 | #do
|
| 127 | 129 | # FILE=`basename $f`
|
| 128 | 130 | # DIR=`dirname $f`
|