diff options
author | Theodore Ts'o <tytso@mit.edu> | 1997-12-01 18:24:10 +0000 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 1997-12-01 18:24:10 +0000 |
commit | 5be8dc2143c7b3b21a9b8fb56797dd855ee87560 (patch) | |
tree | c05a66556a187b90c0bd8cab1429f04cd3587967 /debugfs | |
parent | 134ea28aaf76a3497361c99e115ff666b0c000b8 (diff) | |
download | e2fsprogs-5be8dc2143c7b3b21a9b8fb56797dd855ee87560.tar.gz |
Many files:
dblist.c (ext2fs_get_num_dirs): Make ext2fs_get_num_dirs more paranoid
about validating the directory counts from the block group
information.
all files: Don't include stdlib.h anymore; include it in ext2_fs.h,
since that file requires stdlib.h
ChangeLog, Makefile.in, dirinfo.c:
dirinfo.c (e2fsck_add_dir_info): Use ext2fs_get_num_dirs instead of
e2fsck_get_num_dirs, which has been removed.
Makefile.in (PROGS): Remove @EXTRA_PROGS@, since we don't want to
compile and install flushb.
ChangeLog, configure.in:
Remove @EXTRA_PROGS@, since we aren't using it in 2fsck/Makefile.in anymore
ChangeLog, Makefile.in:
Install debugfs in /sbin, instead of /usr/sbin.
libext2fs.texinfo:
Update version string to be 1.12
Makefile.in:
Fix bug in find script which made the exclusion list, where a '-' was
missing from an -name option.
Diffstat (limited to 'debugfs')
-rw-r--r-- | debugfs/ChangeLog | 4 | ||||
-rw-r--r-- | debugfs/Makefile.in | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/debugfs/ChangeLog b/debugfs/ChangeLog index edbccd1d..ce82acf9 100644 --- a/debugfs/ChangeLog +++ b/debugfs/ChangeLog @@ -1,3 +1,7 @@ +Mon Dec 1 13:21:09 1997 Theodore Ts'o <tytso@rsts-11.mit.edu> + + * Makefile.in: Install debugfs in /sbin, instead of /usr/sbin. + Sat Oct 25 18:35:30 1997 Theodore Ts'o <tytso@rsts-11.mit.edu> * debugfs.c (copy_file), dump.c (dump_file): Change to use the new diff --git a/debugfs/Makefile.in b/debugfs/Makefile.in index 4dec9622..b52d9e76 100644 --- a/debugfs/Makefile.in +++ b/debugfs/Makefile.in @@ -45,8 +45,8 @@ installdirs: install: $(PROGS) $(MANPAGES) installdirs for i in $(PROGS); do \ - $(INSTALL_PROGRAM) $$i $(DESTDIR)$(usbindir)/$$i; \ - $(STRIP) $(DESTDIR)$(usbindir)/$$i; \ + $(INSTALL_PROGRAM) $$i $(DESTDIR)$(sbindir)/$$i; \ + $(STRIP) $(DESTDIR)$(sbindir)/$$i; \ done for i in $(MANPAGES); do \ $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \ |