summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-05-20 12:07:23 +0000
committerUlrich Drepper <drepper@redhat.com>1998-05-20 12:07:23 +0000
commitd85ba467a555ebf5a694689d64f138b683b6e277 (patch)
tree85bfd8ff216a490034dee1c820f216ce5dd160a5
parent0c3af62217db7ed9d1c8c2713cb31328338765bf (diff)
downloadglibc-d85ba467a555ebf5a694689d64f138b683b6e277.tar.gz
(rpath-link): Add resolvobjdir.
(resolvobjdir): New variable. (+force): New variable.
-rw-r--r--Makeconfig14
1 files changed, 13 insertions, 1 deletions
diff --git a/Makeconfig b/Makeconfig
index 38a110ac19..bd6ab11a69 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.
####