diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-01-30 10:51:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-01-30 10:51:27 +0000 |
commit | 7f0ff1b04ad67b1a4f624a8ad54e7533d1c8aab3 (patch) | |
tree | 2ae697a99ea3811eaaec9f79743aaab3c9f10713 /Makeconfig | |
parent | 687adf1dd0fb7dfa5aedf296108380e02fd89f90 (diff) | |
download | glibc-7f0ff1b04ad67b1a4f624a8ad54e7533d1c8aab3.zip glibc-7f0ff1b04ad67b1a4f624a8ad54e7533d1c8aab3.tar.gz glibc-7f0ff1b04ad67b1a4f624a8ad54e7533d1c8aab3.tar.bz2 |
Define $(inst_libexecdir).
Diffstat (limited to 'Makeconfig')
-rw-r--r-- | Makeconfig | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -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. # The GNU C Library is free software; you can redistribute it and/or @@ -226,13 +226,18 @@ gconvdir = $(libdir)/gconv endif inst_gconvdir = $(install_root)$(gconvdir) - # Where to install programs. ifndef bindir bindir = $(exec_prefix)/bin endif 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. ifndef rootsbindir rootsbindir = $(exec_prefix)/sbin |