Skip to content

Commit

Permalink
Fixes manpages location install (patch from buzo-ffm as given in issu…
Browse files Browse the repository at this point in the history
…e 176).
  • Loading branch information
s-vincent committed Sep 14, 2018
1 parent 1cf517b commit 76dc446
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 76dc446

Please sign in to comment.