diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2008-10-30 18:58:46 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2008-10-30 18:58:46 +0000 |
commit | c0e6a9e9106461434a44281a1e68499d4c47b12c (patch) | |
tree | 18b88192a37f1c88395dfcc783c98e47f18e4aaf /update-subdirs | |
parent | 27301075bdfd4e695392dcfbc447ed8034d6ccf8 (diff) | |
download | emacs-c0e6a9e9106461434a44281a1e68499d4c47b12c.tar.gz |
Put obsolete directory last.
Diffstat (limited to 'update-subdirs')
-rwxr-xr-x | update-subdirs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/update-subdirs b/update-subdirs index b4df2cea045..336b6735abf 100755 --- a/update-subdirs +++ b/update-subdirs @@ -27,9 +27,13 @@ for file in *; do ;; *) if [ -d $file ]; then - subdirs="\"$file\" $subdirs" + if [ "$file" = "obsolete" ]; then + subdirs="$subdirs \"$file\"" + else + subdirs="\"$file\" $subdirs" + fi fi - ;; + ;; esac done |