From 67dd7c063e2ad0c43a1bee8b050576fe983c3b6f Mon Sep 17 00:00:00 2001 From: Sebastien Vincent Date: Fri, 14 Sep 2018 19:31:31 +0200 Subject: [PATCH] Fixes manpages location install (patch from buzo-ffm as given in issue 176). --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 6797a04e..fcb32424 100644 --- a/SConstruct +++ b/SConstruct @@ -218,7 +218,7 @@ if mode in ('all', 'release'): env = FreelanEnvironment(mode='release', prefix=prefix, bin_prefix=bin_prefix, mongoose=mongoose, upnp=upnp) libraries, includes, apps, samples, configurations, help = SConscript('SConscript', exports='env', variant_dir=os.path.join('build', env.mode)) install = env.Install(os.path.join(env.bin_install_prefix, 'bin'), apps) - install = env.Install(os.path.join(env.bin_install_prefix, 'man', 'man1'), help) + install.extend(env.Install(os.path.join(env.bin_install_prefix, 'share/man', 'man1'), help)) install.extend(env.Install(os.path.join(env.install_prefix, 'etc', 'freelan'), configurations)) Alias('install', install)