]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
ChangeLog, subst.conf.in:
authorTheodore Ts'o <tytso@mit.edu>
Fri, 3 Apr 1998 16:07:06 +0000 (16:07 +0000)
committerTheodore Ts'o <tytso@mit.edu>
Fri, 3 Apr 1998 16:07:06 +0000 (16:07 +0000)
  Add substitution for @datadir@
ChangeLog, Makefile.in:
  Change to use new installation directory variables convention.  Fix
  uninstall rules to take $(DESTDIR) into account.  Remove cat8dir from
  the installdirs target, since modern man package don't necessarily put
  the cat directory in /usr/man/cat?.
ChangeLog, .del-types.h.in~7a460879:
  types.h.in: Add a signed keyword to the __s64 definition.

include/linux/ChangeLog
include/linux/types.h.in
resize/ChangeLog
resize/Makefile.in
util/ChangeLog
util/subst.conf.in

index 256687ac97d0809e965738da8c10a5ea7148dbc7..afb282863485f740cd3a399c19f1aad7b3a8b165 100644 (file)
@@ -1,3 +1,7 @@
+1998-03-30  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * types.h.in: Add a signed keyword to the __s64 definition.
+
 1998-03-23  Theodore Ts'o  <tytso@rsts-11.mit.edu>
 
        * ext2_fs.h: Update to latest 2.1.90+diffs version of ext2_fs.h
index ee5f24d0e7b5de971d8a16885478461ed1a2e8cd..19ed906bc60f069b6187272398f65a07da963539 100644 (file)
@@ -11,7 +11,7 @@ typedef unsigned int  __u64;
 typedef long           __s64;
 typedef unsigned long  __u64;
 #elif (@SIZEOF_LONG_LONG@ == 8)
-typedef long long      __s64;
+typedef __signed__ long long   __s64;
 typedef unsigned long long     __u64;
 #endif
 
index d18e32fdcf7b35f9e0bc394c444661701b0e7231..fea200e3f5bd10e8863fc2efd06b9452bfa382c1 100644 (file)
@@ -1,3 +1,11 @@
+1998-03-30  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * Makefile.in: Change to use new installation directory variables
+               convention.  Fix uninstall rules to take $(DESTDIR) into
+               account.  Remove cat8dir from the installdirs target,
+               since modern man package don't necessarily put the cat
+               directory in /usr/man/cat?.
+
 1998-03-29  Theodore Ts'o  <tytso@rsts-11.mit.edu>
 
        * extent.c (extent_cmp): Add const to cast to prevent -Wall warning.
index f4510c8aa9624cbdc528eeaaf1956a46ba8f2e70..d25d7836f8cc78a0171c196a39c1e12358c7b229 100644 (file)
@@ -50,13 +50,13 @@ test_extent: $(TEST_EXTENT_OBJS)
        $(CC) $(ALL_LDFLAGS) -o test_extent $(TEST_EXTENT_OBJS) $(LIBS)
        
 installdirs:
-       $(top_srcdir)/mkinstalldirs $(DESTDIR)$(usbindir) \
-               $(DESTDIR)$(man8dir) $(DESTDIR)$(cat8dir)
+       $(top_srcdir)/mkinstalldirs $(DESTDIR)$(sbindir) \
+               $(DESTDIR)$(man8dir)
 
 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; \
@@ -64,10 +64,10 @@ install: $(PROGS) $(MANPAGES) installdirs
 
 uninstall:
        for i in $(PROGS); do \
-               $(RM) -f $(usbindir)/$$i; \
+               $(RM) -f $(DESTDIR)$(sbindir)/$$i; \
        done
        for i in $(MANPAGES); do \
-               $(RM) -f $(man8dir)/$$i; \
+               $(RM) -f $(DESTDIR)$(man8dir)/$$i; \
        done
 
 test_extent.out: test_extent $(srcdir)/test_extent.in
index 883792152e07c645578e16518490533907c854ee..b5ba2df411d666da5b9a3539c6e8efd598c27106 100644 (file)
@@ -1,3 +1,7 @@
+1998-03-31  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * subst.conf.in: Add substitution for @datadir@
+
 Mon Jan 19 09:25:24 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
 
        * subst.c: Rename "new" to "new_f" to avoid C++ reserved word
index 9108659f2cb22b6170213d56c93134ceebf14cc5..355f1691bd2b3ca933338e34554a69af852f73a8 100644 (file)
@@ -9,3 +9,4 @@ SIZEOF_LONG_LONG        @SIZEOF_LONG_LONG@
 SIZEOF_LONG            @SIZEOF_LONG@
 SIZEOF_INT             @SIZEOF_INT@
 SIZEOF_SHORT           @SIZEOF_SHORT@
+datadir                        @datadir@