1999-10-03 15:56:58 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Write into $1/subdirs.el a list of subdirs of directory $1.
|
2001-02-20 11:00:55 +00:00
|
|
|
|
2015-01-01 22:26:41 +00:00
|
|
|
# Copyright (C) 1994-1995, 1997, 1999, 2001-2015 Free Software
|
2013-01-01 09:11:05 +00:00
|
|
|
# Foundation, Inc.
|
2008-05-07 07:35:58 +00:00
|
|
|
|
2001-02-20 11:00:55 +00:00
|
|
|
# This file is part of GNU Emacs.
|
2008-05-07 07:35:58 +00:00
|
|
|
|
|
|
|
# GNU Emacs is free software: you can redistribute it and/or modify
|
2001-02-20 11:00:55 +00:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
2008-05-07 07:35:58 +00:00
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
2001-02-20 11:00:55 +00:00
|
|
|
# GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2008-05-07 07:35:58 +00:00
|
|
|
|
2001-02-20 11:00:55 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2008-05-07 07:35:58 +00:00
|
|
|
# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2001-02-20 11:00:55 +00:00
|
|
|
|
Progress towards allowing installation in directories with whitespace
* Makefile.in (COPYDESTS, write_subdir, install-arch-dep)
(install-arch-indep, install-etcdoc, install-info, install-man)
(install-etc, uninstall): Quote entities that might contain whitespace.
* build-aux/update-subdirs: Handle whitespace in argument.
Check cd return value.
* doc/emacs/Makefile.in (install-dvi, install-html, install-pdf)
(install-ps, uninstall-dvi, uninstall-html, uninstall-ps)
(uninstall-pdf): Quote entities that might contain whitespace.
* doc/lispintro/Makefile.in (install-dvi, install-html, install-pdf)
(install-ps, uninstall-dvi, uninstall-html, uninstall-ps)
(uninstall-pdf): Quote entities that might contain whitespace.
* doc/lispref/Makefile.in (install-dvi, install-html, install-pdf)
(install-ps, uninstall-dvi, uninstall-html, uninstall-ps)
(uninstall-pdf): Quote entities that might contain whitespace.
* doc/misc/Makefile.in (install-dvi, install-html, install-pdf)
(install-ps, uninstall-dvi, uninstall-html, uninstall-ps)
(uninstall-pdf): Quote entities that might contain whitespace.
* lib-src/Makefile.in ($(DESTDIR)${archlibdir}, need-blessmail, install)
(uninstall): Quote entities that might contain whitespace.
* nt/Makefile.in ($(DESTDIR)${archlibdir}, install, uninstall):
Quote entities that might contain whitespace.
2013-10-23 07:20:57 +00:00
|
|
|
cd "$1" || exit 1
|
1999-10-03 15:56:58 +00:00
|
|
|
for file in *; do
|
|
|
|
case $file in
|
1999-10-08 21:28:05 +00:00
|
|
|
*.elc | *.el | term | RCS | CVS | Old | . | .. | =* | *~ | *.orig | *.rej)
|
2003-02-04 14:56:31 +00:00
|
|
|
;;
|
1999-10-03 15:56:58 +00:00
|
|
|
*)
|
|
|
|
if [ -d $file ]; then
|
2008-10-30 18:58:46 +00:00
|
|
|
if [ "$file" = "obsolete" ]; then
|
|
|
|
subdirs="$subdirs \"$file\""
|
|
|
|
else
|
|
|
|
subdirs="\"$file\" $subdirs"
|
|
|
|
fi
|
1999-10-03 15:56:58 +00:00
|
|
|
fi
|
2008-10-30 18:58:46 +00:00
|
|
|
;;
|
1999-10-03 15:56:58 +00:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ "x$subdirs" = x ]; then
|
|
|
|
rm -f subdirs.el
|
|
|
|
else
|
2007-11-17 12:02:32 +00:00
|
|
|
rm -f subdirs.el~
|
2011-12-10 12:49:33 +00:00
|
|
|
echo ";; In load-path, after this directory should come
|
2007-11-17 12:02:32 +00:00
|
|
|
;; certain of its subdirectories. Here we specify them.
|
|
|
|
(normal-top-level-add-to-load-path '($subdirs))
|
2004-03-22 14:10:23 +00:00
|
|
|
;; Local" "Variables:
|
|
|
|
;; version-control: never
|
|
|
|
;; no-byte-compile: t
|
2015-07-22 23:22:49 +00:00
|
|
|
;; no-update-autoloads: t
|
2007-11-17 12:02:32 +00:00
|
|
|
;; End:" > subdirs.el~
|
2008-05-28 17:39:56 +00:00
|
|
|
if cmp "subdirs.el" "subdirs.el~" >/dev/null 2>&1; then
|
2013-04-22 05:01:33 +00:00
|
|
|
rm subdirs.el~
|
2008-05-28 17:39:56 +00:00
|
|
|
else
|
2013-04-22 05:01:33 +00:00
|
|
|
mv subdirs.el~ subdirs.el
|
2008-05-28 17:39:56 +00:00
|
|
|
fi
|
1999-10-03 15:56:58 +00:00
|
|
|
fi
|