diff options
| author | Glenn Morris | 2009-09-29 02:18:20 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-09-29 02:18:20 +0000 |
| commit | 7b1b676db80984b036e1dd59ddd8fcbb9794c106 (patch) | |
| tree | 0172f110189f945fa074c16469dd70e8bc1f4535 | |
| parent | 5da62d41f9bd185d3cf5540bf1ea5f7d35464c69 (diff) | |
| download | emacs-7b1b676db80984b036e1dd59ddd8fcbb9794c106.tar.gz emacs-7b1b676db80984b036e1dd59ddd8fcbb9794c106.zip | |
(check): Update for two new levels of subdirectory in lisp/.
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rwxr-xr-x | make-dist | 8 |
2 files changed, 12 insertions, 0 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-09-29 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * make-dist (check): Update for two new levels of subdirectory in lisp/. | ||
| 4 | |||
| 1 | 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu> | 5 | 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 6 | ||
| 3 | * config.guess, config.sub: Updated from master source. | 7 | * config.guess, config.sub: Updated from master source. |
| @@ -197,8 +197,12 @@ if [ $check = yes ]; | |||
| 197 | then | 197 | then |
| 198 | ### Check for .elc files with no corresponding .el file. | 198 | ### Check for .elc files with no corresponding .el file. |
| 199 | ls -1 lisp/[a-zA-Z]*.el lisp/[a-z]*/[a-zA-Z0-9]*.el \ | 199 | ls -1 lisp/[a-zA-Z]*.el lisp/[a-z]*/[a-zA-Z0-9]*.el \ |
| 200 | lisp/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \ | ||
| 201 | lisp/[a-z]*/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \ | ||
| 200 | leim/[a-z]*/[a-z]*.el | sed 's/\.el$/.elc/' > /tmp/el | 202 | leim/[a-z]*/[a-z]*.el | sed 's/\.el$/.elc/' > /tmp/el |
| 201 | ls -1 lisp/[a-zA-Z]*.elc lisp/[a-z]*/[a-zA-Z0-9]*.elc \ | 203 | ls -1 lisp/[a-zA-Z]*.elc lisp/[a-z]*/[a-zA-Z0-9]*.elc \ |
| 204 | lisp/[a-z]*/[a-z]*/[a-zA-Z0-9]*.elc \ | ||
| 205 | lisp/[a-z]*/[a-z]*/[a-z]*/[a-zA-Z0-9]*.elc \ | ||
| 202 | leim/[a-z]*/[a-z]*.elc > /tmp/elc | 206 | leim/[a-z]*/[a-z]*.elc > /tmp/elc |
| 203 | bogosities="`comm -13 /tmp/el /tmp/elc`" | 207 | bogosities="`comm -13 /tmp/el /tmp/elc`" |
| 204 | if [ "${bogosities}" != "" ]; then | 208 | if [ "${bogosities}" != "" ]; then |
| @@ -209,8 +213,12 @@ then | |||
| 209 | 213 | ||
| 210 | ### Check for .el files with no corresponding .elc file. | 214 | ### Check for .el files with no corresponding .elc file. |
| 211 | ls -1 lisp/[a-zA-Z]*.el lisp/[a-z]*/[a-zA-Z0-9]*.el \ | 215 | ls -1 lisp/[a-zA-Z]*.el lisp/[a-z]*/[a-zA-Z0-9]*.el \ |
| 216 | lisp/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \ | ||
| 217 | lisp/[a-z]*/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \ | ||
| 212 | leim/[a-z]*/[a-z]*.el > /tmp/el | 218 | leim/[a-z]*/[a-z]*.el > /tmp/el |
| 213 | ls -1 lisp/[a-zA-Z]*.elc lisp/[a-z]*/[a-zA-Z0-9]*.elc \ | 219 | ls -1 lisp/[a-zA-Z]*.elc lisp/[a-z]*/[a-zA-Z0-9]*.elc \ |
| 220 | lisp/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \ | ||
| 221 | lisp/[a-z]*/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \ | ||
| 214 | leim/[a-z]*/[a-z]*.elc | sed 's/\.elc$/.el/' > /tmp/elc | 222 | leim/[a-z]*/[a-z]*.elc | sed 's/\.elc$/.el/' > /tmp/elc |
| 215 | losers="`comm -23 /tmp/el /tmp/elc`" | 223 | losers="`comm -23 /tmp/el /tmp/elc`" |
| 216 | bogosities= | 224 | bogosities= |