diff options
author | Jim Meyering <jim@meyering.net> | 1998-07-25 15:28:24 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-07-25 15:28:24 +0000 |
commit | d1f9e2315b22cf978c0b29a28cbb9eca03fe9b1a (patch) | |
tree | 49352f31c5a68e1d9b8358b41410ac98841b86f9 | |
parent | d04604664a580f2805fe4111592467bb656d71f6 (diff) | |
download | coreutils-d1f9e2315b22cf978c0b29a28cbb9eca03fe9b1a.tar.xz |
.
-rw-r--r-- | m4/Makefile.am | 3 | ||||
-rw-r--r-- | old/fileutils/ChangeLog | 44 |
2 files changed, 46 insertions, 1 deletions
diff --git a/m4/Makefile.am b/m4/Makefile.am index e2579df44..66c06d2df 100644 --- a/m4/Makefile.am +++ b/m4/Makefile.am @@ -7,7 +7,8 @@ getline.m4 getloadavg.m4 gettext.m4 inttypes_h.m4 isc-posix.m4 \ jm-glibc-io.m4 jm-macros.m4 jm-mktime.m4 jm-winsz1.m4 jm-winsz2.m4 \ lchown.m4 lcmessage.m4 lfs.m4 ls-mntd-fs.m4 lstat.m4 malloc.m4 memcmp.m4 \ perl.m4 prereq.m4 progtest.m4 putenv.m4 readdir.m4 realloc.m4 regex.m4 \ -ssize_t.m4 stat.m4 strftime.m4 uintmax_t.m4 uptime.m4 utimbuf.m4 +ssize_t.m4 stat.m4 strftime.m4 uintmax_t.m4 uptime.m4 utimbuf.m4 utime.m4 \ +utimes.m4 ##m4-files-end diff --git a/old/fileutils/ChangeLog b/old/fileutils/ChangeLog index 142f03421..fb5116748 100644 --- a/old/fileutils/ChangeLog +++ b/old/fileutils/ChangeLog @@ -1,3 +1,31 @@ +1998-07-25 Jim Meyering <meyering@ascend.com> + + * Version 3.16s. + + * src/remove.c (same_file): New function. + (remove_dir): Use it to give a better diagnostic when rmdir fails + because it can't remove the current directory. + + * src/df.c (long_options): Changes table entries not to use this form: + {"all", no_argument, &show_all_fs, 1}, + but rather this form: + {"all", no_argument, NULL, 'a'}, + Using the latter, all the option handling in one place: the getopt loop. + + * lib/mountlist.c (read_filesystem_list) [MOUNTED_GETMNTINFO]: + Use fsp_to_string. + (fsp_to_string): Don't xmalloc return value (yet). + (xatoi): Ansideclify. + (fstype_to_string): Ansideclify. + * lib/mountlist.h: Define and use PARAMS macro. + + * lib/utime.c: New file. + * src/touch.c (utime_now): Moved into m4/utimes.m4. + (touch) [!HAVE_UTIME_NULL]: Remove #ifdef and use of utime_now + in if-block. + + * configure.in (jm_FUNC_UTIME): Use this, not AC_FUNC_UTIME. + 1998-07-22 Paul Eggert <eggert@twinsun.com> * lib/human.c (human_readable): amt -> damt, to fix typo when @@ -7,6 +35,22 @@ * lib/xstrtol.c: Include <stdio.h> if NDEBUG is not defined; needed on SunOS 4. +1998-07-21 Paul Eggert <eggert@twinsun.com> + + Add df -l or --local option. + * doc/fileutils.texi: Document it. + * lib/mountlist.h (REMOTE_FS_TYPE): New macro. + * lib/mountlist.c (read_filesystem_list): + If all_fs is negative, omit non-local filesytems. + + * src/df.c (show_dev): Omit local devices if show_all_fs is negative. + (show_all_fs): If negative, omit non-local filesystems. + All uses of (all_fs != 0) changed to (all_fs > 0). + (long_options, usage, main): Add -l or --local option. + (main): When asking for df of an explicit file name, get all + the mount points, so that we're more likely to find it when + we look it up. + 1998-07-18 Jim Meyering <meyering@ascend.com> * src/copy.c (copy_internal): Add another exclusion from the |