1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

build: fixed destination name for pc_files

This commit is contained in:
Andrew Tridgell 2010-03-27 18:25:20 +11:00
parent ad0a99f62c
commit 7c8b20037e

View File

@ -701,5 +701,6 @@ def PKG_CONFIG_FILES(bld, pc_files):
dest = '${PKGCONFIGDIR}'
dest = bld.EXPAND_VARIABLES(dest)
for f in TO_LIST(pc_files):
INSTALL_FILES(bld, dest, f+'.in', flat=True, destname=f)
INSTALL_FILES(bld, dest, f+'.in', flat=True,
destname=os.path.basename(f))
Build.BuildContext.PKG_CONFIG_FILES = PKG_CONFIG_FILES