mirror of git://sourceware.org/git/glibc.git
* sunrpc/Makefile (librpcsvc-no-lib-dep): New variable.
* extra-lib.mk: If $(lib)-no-lib-dep is defined and MAKELEVEL>0, make `others' rather than `lib-noranlib' depend on the libraries.
This commit is contained in:
parent
21ee716616
commit
e97ec51d01
|
@ -1,5 +1,9 @@
|
||||||
Tue Oct 24 15:22:58 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
Tue Oct 24 15:22:58 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
||||||
|
|
||||||
|
* sunrpc/Makefile (librpcsvc-no-lib-dep): New variable.
|
||||||
|
* extra-lib.mk: If $(lib)-no-lib-dep is defined and MAKELEVEL>0,
|
||||||
|
make `others' rather than `lib-noranlib' depend on the libraries.
|
||||||
|
|
||||||
* sysdeps/unix/configure.in: Check for fchdir syscall.
|
* sysdeps/unix/configure.in: Check for fchdir syscall.
|
||||||
Improve sed script to allow / on rhs without / on lhs.
|
Improve sed script to allow / on rhs without / on lhs.
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ extra-libs-left := $(filter-out $(lib),$(extra-libs-left))
|
||||||
object-suffixes-$(lib) := $(filter-out $($(lib)-inhibit-o),$(object-suffixes))
|
object-suffixes-$(lib) := $(filter-out $($(lib)-inhibit-o),$(object-suffixes))
|
||||||
|
|
||||||
# Make sure these are simply-expanded variables before we append to them,
|
# Make sure these are simply-expanded variables before we append to them,
|
||||||
# since we want the expressions we we append to be expanded right now.
|
# since we want the expressions we append to be expanded right now.
|
||||||
install-lib := $(install-lib)
|
install-lib := $(install-lib)
|
||||||
extra-objs := $(extra-objs)
|
extra-objs := $(extra-objs)
|
||||||
|
|
||||||
|
@ -25,7 +25,13 @@ ifneq (,$(filter .so,$(object-suffixes-$(lib))))
|
||||||
alltypes-$(lib) += $(objpfx)$(lib).so
|
alltypes-$(lib) += $(objpfx)$(lib).so
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifneq (0,$(MAKELEVEL))
|
||||||
|
ifndef $(lib)-no-lib-dep
|
||||||
lib-noranlib: $(alltypes-$(lib))
|
lib-noranlib: $(alltypes-$(lib))
|
||||||
|
else
|
||||||
|
others: $(alltypes-$(lib))
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
# Use o-iterator.mk to generate a rule for each flavor of library.
|
# Use o-iterator.mk to generate a rule for each flavor of library.
|
||||||
define o-iterator-doit
|
define o-iterator-doit
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (C) 1994 Free Software Foundation, Inc.
|
# Copyright (C) 1994, 1995 Free Software Foundation, Inc.
|
||||||
# This file is part of the GNU C Library.
|
# This file is part of the GNU C Library.
|
||||||
|
|
||||||
# The GNU C Library is free software; you can redistribute it and/or
|
# The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
@ -77,7 +77,7 @@ extra-libs := librpcsvc
|
||||||
librpcsvc-routines = $(rpcsvc:%.x=x%)
|
librpcsvc-routines = $(rpcsvc:%.x=x%)
|
||||||
librpcsvc-inhibit-o = .so # Build no shared rpcsvc library.
|
librpcsvc-inhibit-o = .so # Build no shared rpcsvc library.
|
||||||
omit-deps = $(librpcsvc-routines)
|
omit-deps = $(librpcsvc-routines)
|
||||||
|
librpcsvc-no-lib-dep = t # Don't depend on this in `make lib' pass.
|
||||||
|
|
||||||
# Sun's code is not too clean.
|
# Sun's code is not too clean.
|
||||||
override +gccwarn := -w
|
override +gccwarn := -w
|
||||||
|
|
Loading…
Reference in New Issue