Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 661748 | Differences between
and this patch

Collapse All | Expand All

(-)./SConstruct.ori (-7 / +7 lines)
Lines 7-21 Link Here
7
###############################################
7
###############################################
8
# options
8
# options
9
ipager_optfile = [ 'scons.opts', 'user.opts' ]
9
ipager_optfile = [ 'scons.opts', 'user.opts' ]
10
ipager_options = Options(ipager_optfile)
10
ipager_options = Variables(ipager_optfile)
11
ipager_options.AddOptions(
11
ipager_options.AddVariables(
12
    BoolOption('debug', 'build debug version', 0),
12
    BoolVariable('debug', 'build debug version', 0),
13
    BoolOption('debug_events', 'debug xserve events', 0),
13
    BoolVariable('debug_events', 'debug xserve events', 0),
14
14
15
    BoolOption('xinerama', 'support xinerama', 0),
15
    BoolVariable('xinerama', 'support xinerama', 0),
16
16
17
    PathOption('PREFIX', 'install-path base', '/usr/local'),
17
    PathVariable('PREFIX', 'install-path base', '/usr/local'),
18
    PathOption('DESTDIR', 'install to $DESTDIR/$PREFIX', '/')
18
    PathVariable('DESTDIR', 'install to $DESTDIR/$PREFIX', '/')
19
)
19
)
20
20
21
21

Return to bug 661748