mirror of git://sourceware.org/git/glibc.git
Define $(inst_libexecdir).
This commit is contained in:
parent
687adf1dd0
commit
7f0ff1b04a
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
|
# Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98 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
|
||||||
|
|
@ -226,13 +226,18 @@ gconvdir = $(libdir)/gconv
|
||||||
endif
|
endif
|
||||||
inst_gconvdir = $(install_root)$(gconvdir)
|
inst_gconvdir = $(install_root)$(gconvdir)
|
||||||
|
|
||||||
|
|
||||||
# Where to install programs.
|
# Where to install programs.
|
||||||
ifndef bindir
|
ifndef bindir
|
||||||
bindir = $(exec_prefix)/bin
|
bindir = $(exec_prefix)/bin
|
||||||
endif
|
endif
|
||||||
inst_bindir = $(install_root)$(bindir)
|
inst_bindir = $(install_root)$(bindir)
|
||||||
|
|
||||||
|
# Where to install internal programs.
|
||||||
|
ifndef libexecdir
|
||||||
|
libexecdir = $(exec_prefix)/libexec
|
||||||
|
endif
|
||||||
|
inst_libexecdir = $(install_root)$(libexecdir)
|
||||||
|
|
||||||
# Where to install administrative programs.
|
# Where to install administrative programs.
|
||||||
ifndef rootsbindir
|
ifndef rootsbindir
|
||||||
rootsbindir = $(exec_prefix)/sbin
|
rootsbindir = $(exec_prefix)/sbin
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue