diff options
author | Thomas Bushnell <thomas@gnu.org> | 1996-08-02 15:28:46 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1996-08-02 15:28:46 +0000 |
commit | 2d3478e37159ebd7ba0d73390b2af5b32a34cc32 (patch) | |
tree | db449afc60dd0e5698fdfeb7fda0d8b335ebd79f | |
parent | 8c02e14e3860ae1811f193a938ca3686425d13a7 (diff) |
*** empty log message ***
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | TODO | 3 | ||||
-rw-r--r-- | config/ChangeLog | 5 | ||||
-rw-r--r-- | config/Makefile | 4 | ||||
-rw-r--r-- | libdiskfs/ChangeLog | 6 | ||||
-rw-r--r-- | release/Makefile | 3 |
7 files changed, 26 insertions, 6 deletions
@@ -1,3 +1,10 @@ +Fri Aug 2 11:02:11 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * Released source version 0.0. + + * Makefile (cp-linked-files): Add missing hyphen to rule. + (dist): Delete directory named for VERSION, not old var DATE. + Tue Jul 30 13:54:47 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> * Makeconf (top_srcdirinc): Don't define EWOULDBLOCK anymore. @@ -78,7 +78,7 @@ endif dist: $(srcdir)/hurd-snap $(addsuffix -lndist,$(filter-out $(subdirs-nodist), $(subdirs))) lndist mv $(srcdir)/hurd-snap $(srcdir)/$(dirname)-$(version) tar cfz $(srcdir)/$(dirname)-$(version).tar.gz $(srcdir)/$(dirname)-$(version) - rm -rf $(srcdir)/$(dirname)-$(date) + rm -rf $(srcdir)/$(dirname)-$(version) clean: $(addsuffix -clean,$(lib-subdirs)) $(addsuffix -clean,$(working-prog-subdirs)) clean-misc @@ -96,7 +96,7 @@ lndist: cp-linked-files linked-files = install-sh config.guess config.sub mkinstalldirs lf-inst = $(addprefix $(srcdir)/hurd-snap/,$(linked-files)) cp-linked-files: $(lf-inst) -$(lfinst): $(srcdir)/hurd-snap/%: $(srcdir)/% +$(lf-inst): $(srcdir)/hurd-snap/%: $(srcdir)/% cp $< $@ TAGS: $(addsuffix -TAGS,$(prog-subdirs) $(lib-subdirs)) @@ -226,8 +226,7 @@ See `tasks', the exported task list. * TODO for version 0.0: ** Compile released libc. -** Compile released utilities. (See SOURCES-0.0) +** Make the release version of SOURCES. ** ext2fs: shutdown doesn't sync properly? [Create a file, then (settrans -a) won't write it, but if you do sync first, everything's fine; the code doesn't look too different...] -** Find fsck system hang diff --git a/config/ChangeLog b/config/ChangeLog index 4233ae49..0eb6027e 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,8 @@ +Fri Aug 2 11:07:18 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * Makefile (DIST_FILES): Put `root-' before ROOTDOTS and `login-' + before LOGINDOTS. + Wed Jul 31 12:11:02 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> * passwd (games): Have no password. diff --git a/config/Makefile b/config/Makefile index ba2693e8..4ff7a5f4 100644 --- a/config/Makefile +++ b/config/Makefile @@ -38,7 +38,9 @@ installed_rootdots = $(addprefix $(prefix)/root/,$(ROOTDOTS)) LINKEDCONFFILES = rc installed_links = $(addprefix $(sysconfdir)/,$(LINKEDCONFFILES)) -DIST_FILES=$(SYSCONFFILES) $(LOGINDOTS) $(ROOTDOTS) +DIST_FILES=$(SYSCONFFILES) \ + $(addprefix login-,$(LOGINDOTS)) \ + $(addprefix root-,$(ROOTDOTS)) foo=$(shell touch /dev/null) diff --git a/libdiskfs/ChangeLog b/libdiskfs/ChangeLog index 3163a70a..6d0fa719 100644 --- a/libdiskfs/ChangeLog +++ b/libdiskfs/ChangeLog @@ -1,3 +1,9 @@ +Thu Aug 1 17:24:08 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * file-get-transcntl.c (diskfs_S_file_get_translator_cntl): Don't + diskfs_nput NP; we've never created a reference. Just unlock it. + (And bother to lock it in the first place.) + Sat Jul 27 20:05:17 1996 Miles Bader <miles@gnu.ai.mit.edu> * lookup.c (diskfs_lookup): Don't nput *NP if we didn't find a file. diff --git a/release/Makefile b/release/Makefile index e450f4c8..f2f73a7f 100644 --- a/release/Makefile +++ b/release/Makefile @@ -23,7 +23,7 @@ makemode := misc # Files that go into the root of binary distributions dist-files = INSTALL-binary dist-README SETUP INSTALL-GRUB-MBR servers.boot \ - menu.lst COPYING.LIB + menu.lst COPYING.LIB SOURCES.0.0 # Tools for making images tool-files = tool-Makefile install-stripped @@ -37,6 +37,7 @@ install-dist: dist-links cp $(srcdir)/INSTALL-binary $(dist-root)/ cp $(srcdir)/dist-README $(dist-root)/README cp $(srcdir)/SETUP $(dist-root)/SETUP + cp $(srcdir)/SOURCES.0.0 $(dist-root)/SOURCES cp $(srcdir)/INSTALL-GRUB-MBR $(dist-root)/INSTALL-GRUB-MBR cp $(srcdir)/servers.boot $(dist-root)/boot/servers.boot cp $(srcdir)/menu.lst $(dist-root)/boot/grub/menu.lst |