From 4cb18b09f84c552bd093097ab01d6776bc8cbcdd Mon Sep 17 00:00:00 2001 From: Pablo Lezaeta Date: Sat, 1 Jun 2013 02:01:38 -0400 Subject: [PATCH] Added --sbin-dir for compatibility and that, you know Signed-off-by: Pablo Lezaeta --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index ed272dc0..a6228758 100755 --- a/setup.py +++ b/setup.py @@ -200,6 +200,10 @@ class Setup(): opts.add_argumented (help = 'Set the system\'s directory for command executables\nDefault = $PREFIX/bin', alternatives = ['--bin-dir'], arg='BINDIR') + opts.add_argumented (help = 'Set the system\'s directory for command executables by root\nDefault = $PREFIX/sbin', + alternatives = ['--sbin-dir'], arg='SBINDIR') + + opts.add_argumented (help = 'Set the system\'s directory for non-executable libraries\nDefault = $PREFIX/lib/ponysay\nNot used.', alternatives = ['--lib-dir'], arg='LIBDIR')