diff options
| author | Jim Blandy | 1992-12-12 15:43:12 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-12-12 15:43:12 +0000 |
| commit | 1d650ff1bdcc1400a54ad77e8d074b880df66c80 (patch) | |
| tree | fe5853d009b673c3d46d14f6e0b6027b74102b3a /make-dist | |
| parent | e94740ce8711ba524d295c50f0bb17fae5be18c9 (diff) | |
| download | emacs-1d650ff1bdcc1400a54ad77e8d074b880df66c80.tar.gz emacs-1d650ff1bdcc1400a54ad77e8d074b880df66c80.zip | |
* make-dist: Don't bother creating an arch-lib directory; that's
only for installation now.
Diffstat (limited to 'make-dist')
| -rwxr-xr-x | make-dist | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -1,7 +1,7 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | #### make-dist: create an Emacs distribution tar file from the current | 3 | #### make-dist: create an Emacs distribution tar file from the current |
| 4 | #### source tree. This basically creates a duplicate directory | 4 | #### source tree. This basically creates a duplicate directory |
| 5 | #### structure, and then hard links into it only those files that should | 5 | #### structure, and then hard links into it only those files that should |
| 6 | #### be distributed. This means that if you add a file with an odd name, | 6 | #### be distributed. This means that if you add a file with an odd name, |
| 7 | #### you should make sure that this script will include it. | 7 | #### you should make sure that this script will include it. |
| @@ -103,7 +103,7 @@ cp config.sub ${tempdir} | |||
| 103 | echo "Creating subdirectories." | 103 | echo "Creating subdirectories." |
| 104 | for subdir in lisp lisp/term local-lisp external-lisp \ | 104 | for subdir in lisp lisp/term local-lisp external-lisp \ |
| 105 | src src/m src/s lib-src oldXMenu \ | 105 | src src/m src/s lib-src oldXMenu \ |
| 106 | etc lock arch-lib cpp info man shortnames vms; do | 106 | etc lock cpp info man shortnames vms; do |
| 107 | mkdir ${tempdir}/${subdir} | 107 | mkdir ${tempdir}/${subdir} |
| 108 | done | 108 | done |
| 109 | 109 | ||