=== modified file 'stagebuilder.prolog' --- stagebuilder.prolog 2011-10-31 20:42:42 +0000 +++ stagebuilder.prolog 2011-10-23 04:06:19 +0000 @@ -23,7 +23,6 @@ concat([A, Sep, B], Start), strjoin(Sep, [Start|R], Result). -join(_, [], []). join(_, [X], X). join(Sep, [A, B|R], A + Sep + Result) :- join(Sep, [B|R], Result). @@ -296,7 +295,7 @@ concat([C1, C2, C3, C4, C5, C6], Commands). target(amd64_hardened_vshost, Dir, Commands) :- - create_gentoo_builddir(amd64_hardened, Dir, C1), + create_gentoo_builddir(i686_hardened, Dir, C1), reset_make_conf(Dir, '-O2 -pipe', '${CFLAGS}', 'amd64-pc-linux-gnu', C2), C3 = [echo_append('ACCEPT_KEYWORDS="~amd64"')], append_site_make_conf(Dir, C4), @@ -309,8 +308,3 @@ create_stage(amd64_hardened_vshost_stage4, Dir, C9), concat([C1, C2, C3, C4, C5, C6, C7, C8, C9], Commands). -cmds_repr([]). -cmds_repr([Command|R]) :- - write('representation of: '), write(Command), write('\n'), - setof( ,format_cmds([Command]), Solutions), - cmds_repr(R).