Commit 4fc2377c authored by Claes Sjofors's avatar Claes Sjofors

pwre fix in ebuild

parent 22b86d3a
......@@ -328,6 +328,8 @@ sub ebuild # args: pass flavour
merge();
}
if ( $build_bcomp == 1) {
_module("profibus");
merge();
_module("bcomp");
_build("lib", "rt", "src", "all");
merge();
......@@ -990,7 +992,15 @@ sub copy ()
my($cmd) = "make -f $bindir/import_files.mk" . " " . $_[0];
system("$cmd");
my($cmd) = "make -f $bindir/import_files.mk" . " " . $_[0] . "_" . $_[1];
my $flavour = $_[1];
if ( $_[1] eq "motif") {
$flavour = "motif";
}
else {
$flavour = "gtk";
}
my($cmd) = "make -f $bindir/import_files.mk" . " " . $_[0] . "_" . $flavour;
system("$cmd");
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment