diff options
author | Nathan Sidwell <nathan@acm.org> | 2020-12-21 06:30:14 -0800 |
---|---|---|
committer | Nathan Sidwell <nathan@acm.org> | 2020-12-21 06:30:59 -0800 |
commit | 626b63d63a2596da1327b5528778a429fa7e25e0 (patch) | |
tree | d93d5dc98fc09c5aec0f1129eeec3ac1fb8c009a /libcody/Makefile.in | |
parent | 119d7478d1a7d59a0fa5a02690b2555ac2c3ed89 (diff) | |
download | gcc-626b63d63a2596da1327b5528778a429fa7e25e0.tar.gz |
libcody: Add ranlib
Add RANLIB.
libcody/
* Makefile.in (RANLIB): New var.
* Makesub.in (libcody.a): Apply RANLIB.
* configure.ac: Call AC_PROG_RANLIB.
* configure: Rebuilt.
Diffstat (limited to 'libcody/Makefile.in')
-rw-r--r-- | libcody/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libcody/Makefile.in b/libcody/Makefile.in index 28ed3a22299..a0722f9a385 100644 --- a/libcody/Makefile.in +++ b/libcody/Makefile.in @@ -48,6 +48,7 @@ SHELL := $(shell which zsh 2>/dev/null >/dev/null && echo zsh \ # We have to place the -I paths last, so that building will see -I paths to us CXX := $(filter-out -I%,@CXX@) AR := @AR@ +RANLIB := @RANLIB@ INSTALL := $(srcdir)/build-aux/install-sh # C++ compiler options |