diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-01-12 12:08:13 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-01-12 12:08:13 +0000 |
commit | 03c0d6ef17c03ef0e2ce005a54e53b8039830fbb (patch) | |
tree | c941a6e611971129b5d23cd663574e7d69cf111a /Makefile | |
parent | ce75c139ac162cf8d7d4a7598503bc3592328b2c (diff) | |
download | glibc-03c0d6ef17c03ef0e2ce005a54e53b8039830fbb.tar.gz glibc-03c0d6ef17c03ef0e2ce005a54e53b8039830fbb.tar.xz glibc-03c0d6ef17c03ef0e2ce005a54e53b8039830fbb.zip |
Update.
* Makefile (install): Correct passing -r parameter to ldconfig.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 73812e18e1..eee88c9e0d 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991,92,93,94,95,96,97,98,99 Free Software Foundation, Inc. +# Copyright (C) 1991-1999, 2000 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -106,7 +106,8 @@ install-symbolic-link: subdir_install install: -test ! -x $(common-objpfx)elf/ldconfig || \ - $(common-objpfx)elf/ldconfig -r $(install_root) $(inst_slibdir) $(inst_libdir) + $(common-objpfx)elf/ldconfig $(addprefix -r ,$(install_root)) \ + $(inst_slibdir) $(inst_libdir) ifneq (no,$(PERL)) ifeq (/usr,$(prefix)) ifeq (,$(install_root)) |