From: Ulrich Drepper Date: Wed, 20 May 1998 12:07:23 +0000 (+0000) Subject: (rpath-link): Add resolvobjdir. X-Git-Tag: cvs/sparc-980522-merge~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d85ba467a555ebf5a694689d64f138b683b6e277;p=thirdparty%2Fglibc.git (rpath-link): Add resolvobjdir. (resolvobjdir): New variable. (+force): New variable. --- diff --git a/Makeconfig b/Makeconfig index 38a110ac198..bd6ab11a69a 100644 --- a/Makeconfig +++ b/Makeconfig @@ -348,9 +348,12 @@ else default-rpath = $(libdir) endif # This is how to find at build-time things that will be installed there. -rpath-link = $(common-objdir):$(elfobjdir):$(nssobjdir) +rpath-link = $(common-objdir):$(elfobjdir):$(nssobjdir):$(nisobjdir):$(dbobjdir):$(resolvobjdir) elfobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)elf) nssobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nss) +nisobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nis) +dbobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)db) +resolvobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)resolv) else link-libc = $(common-objpfx)libc.a $(gnulib) $(common-objpfx)libc.a endif @@ -417,6 +420,15 @@ ETAGS := etags -T # perhaps others) to preprocess assembly code in some cases. M4 = m4 +# To force installation of files even if they are older than the +# installed files. This variable is included in the dependency list +# of all installation targets. +ifeq ($(force-install),yes) ++force = force-install +else ++force = +endif + #### #### End of configuration variables. ####