diff options
| author | Glenn Morris | 2017-06-12 13:53:38 -0400 |
|---|---|---|
| committer | Glenn Morris | 2017-06-12 13:54:07 -0400 |
| commit | 710ed389126d05949dcba890cd8d3a1082851e70 (patch) | |
| tree | 9b750e55db038080355e4bf0b7e8d547852f6aa0 | |
| parent | 1d1f30104c464de7d3557ddb4ddd157d5ee74ed0 (diff) | |
| download | emacs-710ed389126d05949dcba890cd8d3a1082851e70.tar.gz emacs-710ed389126d05949dcba890cd8d3a1082851e70.zip | |
* make-dist: Skip some more generated files in test/.
| -rwxr-xr-x | make-dist | 5 |
1 files changed, 4 insertions, 1 deletions
| @@ -552,8 +552,11 @@ done | |||
| 552 | if [ "$with_tests" = "yes" ]; then | 552 | if [ "$with_tests" = "yes" ]; then |
| 553 | echo "Making links to 'test' and its subdirectories" | 553 | echo "Making links to 'test' and its subdirectories" |
| 554 | for f in `find test -type f ! -name '*.log' ! -name a.out \ | 554 | for f in `find test -type f ! -name '*.log' ! -name a.out \ |
| 555 | ! -path test/Makefile ! -path test/data/emacs-module/Makefile | 555 | ! -name '*.so' ! -name '*.dll' ! -name '*.o' |
| 556 | `; do | 556 | `; do |
| 557 | case $f in | ||
| 558 | */Makefile) [ -f $f.in ] && continue ;; | ||
| 559 | esac | ||
| 557 | ln $f $tempdir/$f | 560 | ln $f $tempdir/$f |
| 558 | done | 561 | done |
| 559 | fi | 562 | fi |