diff options
author | Joyce Janczyn <janczyn@cygnus> | 1998-05-15 20:06:08 +0000 |
---|---|---|
committer | Joyce Janczyn <janczyn@cygnus> | 1998-05-15 20:06:08 +0000 |
commit | 6cad239558cc9e3dd526c80c631807b70549b3c9 (patch) | |
tree | 6bc81f3fd68f9018b16a967e5ab16b3ee966c30b /sim | |
parent | 6e8bee16e8fc169e79b2ad2d1d2eaae5a2d94542 (diff) | |
download | gdb-6cad239558cc9e3dd526c80c631807b70549b3c9.zip gdb-6cad239558cc9e3dd526c80c631807b70549b3c9.tar.gz gdb-6cad239558cc9e3dd526c80c631807b70549b3c9.tar.bz2 |
Run ranlib on installed copy of libsim.a.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/common/ChangeLog | 5 | ||||
-rw-r--r-- | sim/common/Make-common.in | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 2cf0683..6fe7239 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,8 @@ +Fri May 15 15:59:00 1998 Joyce Janczyn <janczyn@cygnus.com> + + * Make-common.in (install-common): Run ranlib on installed copy of + libsim.a. + Fri May 15 15:03:00 1998 Joyce Janczyn <janczyn@cygnus.com> * Make-common.in (install-common): Rename and install libsim.a. diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index 0c648ac..50e0222 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -540,7 +540,8 @@ install-common: installdirs n=`echo run | sed '$(program_transform_name)'`; \ $(INSTALL_PROGRAM) run$(EXEEXT) $(bindir)/$$n n=`echo libsim.a | sed s/libsim.a/lib$(target_alias)-sim.a/`; \ - $(INSTALL_DATA) libsim.a $(libdir)/$$n + $(INSTALL_DATA) libsim.a $(libdir)/$$n ; \ + ( cd $(libdir) ; $(RANLIB) $$n ) installdirs: $(SHELL) $(srcdir)/../../mkinstalldirs $(bindir) |