diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2006-07-04 20:31:03 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2006-07-04 20:31:03 +0000 |
commit | 6816f9950e15fb2f984cc8fcb3da0d5709574082 (patch) | |
tree | ccb3c176cd7051954fd5f08eb9343a7c2143f6bc /libiberty/Makefile.in | |
parent | 5f0fe04bc550ba0121080e184be759896741ac4c (diff) | |
download | gdb-6816f9950e15fb2f984cc8fcb3da0d5709574082.zip gdb-6816f9950e15fb2f984cc8fcb3da0d5709574082.tar.gz gdb-6816f9950e15fb2f984cc8fcb3da0d5709574082.tar.bz2 |
ChangeLog:
* ltconfig: chmod 644 before ranlib during install.
libiberty/ChangeLog:
* Makefile.in: chmod 644 before ranlib during install.
Diffstat (limited to 'libiberty/Makefile.in')
-rw-r--r-- | libiberty/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in index 95a8278..a579d79 100644 --- a/libiberty/Makefile.in +++ b/libiberty/Makefile.in @@ -335,7 +335,7 @@ install: install_to_$(INSTALL_DEST) install-subdir install_to_libdir: all ${mkinstalldirs} $(DESTDIR)$(libdir)$(MULTISUBDIR) $(INSTALL_DATA) $(TARGETLIB) $(DESTDIR)$(libdir)$(MULTISUBDIR)/$(TARGETLIB)n - ( cd $(DESTDIR)$(libdir)$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB)n ) + ( cd $(DESTDIR)$(libdir)$(MULTISUBDIR) ; chmod 644 $(TARGETLIB)n ;$(RANLIB) $(TARGETLIB)n ) mv -f $(DESTDIR)$(libdir)$(MULTISUBDIR)/$(TARGETLIB)n $(DESTDIR)$(libdir)$(MULTISUBDIR)/$(TARGETLIB) if test -n "${target_header_dir}"; then \ case "${target_header_dir}" in \ @@ -357,7 +357,7 @@ MULTIOSDIR = `$(CC) $(LIBCFLAGS) -print-multi-os-directory` install_to_tooldir: all ${mkinstalldirs} $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR) $(INSTALL_DATA) $(TARGETLIB) $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR)/$(TARGETLIB)n - ( cd $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR) ; $(RANLIB) $(TARGETLIB)n ) + ( cd $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR) ; chmod 644 $(TARGETLIB)n; $(RANLIB) $(TARGETLIB)n ) mv -f $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR)/$(TARGETLIB)n $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR)/$(TARGETLIB) @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install |