]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(rpath-link): Add resolvobjdir.
authorUlrich Drepper <drepper@redhat.com>
Wed, 20 May 1998 12:07:23 +0000 (12:07 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 20 May 1998 12:07:23 +0000 (12:07 +0000)
(resolvobjdir): New variable.
(+force): New variable.

Makeconfig

index 38a110ac1983ed5c07c7d89325ba0880cd850954..bd6ab11a69a1cdb4e182801a3489ef9df92ad0ba 100644 (file)
@@ -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.
 ####