diff options
author | Roland McGrath <roland@gnu.org> | 1995-03-27 17:44:04 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-03-27 17:44:04 +0000 |
commit | c316b48636c57c68febc93cfcf192d362be94675 (patch) | |
tree | 3bafd0ce817d6f79b731d6ea8e56bbbf698293b6 | |
parent | 342414a6e0952c308c0cf27daab6ea24fc4cc172 (diff) | |
download | glibc-c316b48636c57c68febc93cfcf192d362be94675.tar.gz glibc-c316b48636c57c68febc93cfcf192d362be94675.tar.xz glibc-c316b48636c57c68febc93cfcf192d362be94675.zip |
* mach/Makefile (headers): Add mach/mach_traps.h.
* Makerules ($(installed-libcs) rule): Fix typos.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Makerules | 4 | ||||
-rw-r--r-- | mach/Makefile | 2 | ||||
-rw-r--r-- | version.c | 2 |
4 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog index 10e8ad181d..9b0915fbee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ Mon Mar 27 02:23:15 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> + * mach/Makefile (headers): Add mach/mach_traps.h. + + * Makerules ($(installed-libcs) rule): Fix typos. + * sysdeps/unix/bsd/bsd4.4/revoke.S: New file. * sysdeps/stub/revoke.c: New file. * misc/Makefile (routines): Add revoke. diff --git a/Makerules b/Makerules index 6eb317e662..2b4af3e417 100644 --- a/Makerules +++ b/Makerules @@ -452,9 +452,9 @@ install: $(installed-libcs) # __.SYMDEF time stamp up to date, which avoids messages from some linkers. # Depending on subdir_install gets all the subdirs to update the library, # and is optimal for `make install' at top level. -$(install-libcs): $(libdir)/lib$(libprefix)%: libobjs subdir_install +$(installed-libcs): $(libdir)/lib$(libprefix)%: libobjs subdir_install $(make-target-directory) - $(INSTALL_DATA) $(common-objpfx)lib$* $@ + $(INSTALL_DATA) $(common-objpfx)lib$(*:$(libc-name)%=c%) $@ $(RANLIB) $@ endif diff --git a/mach/Makefile b/mach/Makefile index f9a3815f39..3a7a8fe82a 100644 --- a/mach/Makefile +++ b/mach/Makefile @@ -24,7 +24,7 @@ all: include ../Makeconfig -headers = mach_init.h mach.h mach_error.h mach-shortcuts.h \ +headers = mach_init.h mach.h mach_error.h mach-shortcuts.h mach/mach_traps.h \ $(interface-headers) mach/mach.h mach/mig_support.h mach/error.h \ $(lock-headers) machine-sp.h distribute = thread_state.h diff --git a/version.c b/version.c index 73dfe6f0a7..a838bf763c 100644 --- a/version.c +++ b/version.c @@ -20,7 +20,7 @@ Cambridge, MA 02139, USA. */ #include <stdio.h> CONST char __libc_release[] = "alpha"; -CONST char __libc_version[] = "1.09.5"; +CONST char __libc_version[] = "1.09.6"; void DEFUN_VOID(__libc_print_version) |