Description: Fix installation path of freelan binary The install target places the freelan binary in a location different from where the sysvinit script expects it, which causes the freelan system service to exit prematurely. This patch makes sure the freelan binary is installed at the location where the sysvinit script expects it. . freelan (2.0-1) unstable; urgency=low . * initial release to Debian. Closes: #780608 based on previous work by Julien Kauffmann and Etienne Champetier Author: Rolf Leggewie Bug-Debian: https://bugs.debian.org/780608 --- --- freelan-2.0.orig/SConstruct +++ freelan-2.0/SConstruct @@ -150,7 +150,7 @@ prefix = os.path.normpath(os.path.abspat if mode in ('all', 'release'): env = FreelanEnvironment(mode='release', prefix=prefix) libraries, includes, apps, samples, configurations = SConscript('SConscript', exports='env', variant_dir=os.path.join('build', env.mode)) - install = env.Install(os.path.join(env.install_prefix, 'bin'), apps) + install = env.Install(os.path.join(env.install_prefix, 'usr/sbin'), apps) install.extend(env.Install(os.path.join(env.install_prefix, 'etc', 'freelan'), configurations)) Alias('install', install)