diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2011-08-12 12:24:44 -0400 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2011-08-12 12:24:44 -0400 |
commit | 6166381eddb4a84181846ac4c49f31f1ccc183b0 (patch) | |
tree | 11cba12ab794bee39bbf2d026d453f09d15e78b4 /make-dist | |
parent | 9ccaaa4be77d1698784cceb983ef987cc80212c2 (diff) | |
download | emacs-6166381eddb4a84181846ac4c49f31f1ccc183b0.tar.gz |
admin/make-dist: Add admin/ to source tarballs.
admin/charsets/mapfiles/*.gz: Delete. Add gunzipped versions.
See emacs-devel thread at
http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00347.html
Diffstat (limited to 'make-dist')
-rwxr-xr-x | make-dist | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/make-dist b/make-dist index 963236b936e..e069c71a762 100755 --- a/make-dist +++ b/make-dist @@ -297,7 +297,7 @@ for subdir in site-lisp \ leim/SKK-DIC leim/ja-dic leim/quail \ src src/m src/s src/bitmaps lib lib-src oldXMenu lwlib \ nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet nt/icons \ - `find etc lisp -type d` \ + `find etc lisp admin -type d` \ doc doc/emacs doc/misc doc/man doc/lispref doc/lispintro \ info m4 msdos \ nextstep nextstep/Cocoa nextstep/Cocoa/Emacs.base \ @@ -448,6 +448,11 @@ echo "Making links to \`lwlib'" ln *.[ch] *.in ../${tempdir}/lwlib ln README ChangeLog ../${tempdir}/lwlib) +echo "Making links to \`admin' and its subdirectories" +for f in `find admin -type f`; do + ln $f $tempdir/$f +done + echo "Making links to \`etc' and its subdirectories" for f in `find etc -type f`; do case $f in |