diff options
author | Roland McGrath <roland@gnu.org> | 1996-07-16 21:19:13 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-07-16 21:19:13 +0000 |
commit | f36f8dcf1cf07c66e9f7a3eba408e2b0af12d717 (patch) | |
tree | 93cf1bcdcb0c5b31f1b731184b32471443b9c287 /Makerules | |
parent | ec42724d6970b2d3e9007de0841394856e84d287 (diff) | |
download | glibc-f36f8dcf1cf07c66e9f7a3eba408e2b0af12d717.tar.gz glibc-f36f8dcf1cf07c66e9f7a3eba408e2b0af12d717.tar.xz glibc-f36f8dcf1cf07c66e9f7a3eba408e2b0af12d717.zip |
Tue Jul 16 16:43:58 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* sysdeps/mach/hurd/mmap.c: Use same inheritance arg in second vm_map call as in first. * Makerules (make-link): Install the new link with atomic mv -f in case ln itself requires the library being installed.
Diffstat (limited to 'Makerules')
-rw-r--r-- | Makerules | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makerules b/Makerules index cb6b35425a..0554f85f98 100644 --- a/Makerules +++ b/Makerules @@ -583,7 +583,9 @@ versioned := $(strip $(foreach so,$(install-lib.so),\ $(addprefix $(libdir)/,$(filter-out $(versioned),$(install-lib.so))): \ $(libdir)/%.so: $(objpfx)%.so; $(do-install-program) -make-link = cd $(@D); rm -f $(@F); $(LN_S) $(<F) $(@F) +define make-link +cd $(@D); rm -f $(@F).new; $(LN_S) $(<F) $(@F).new; mv -f $(@F).new $(@F) +endef ifdef libc.so-version # For a library specified to be version N, install three files: |