Skip to content

Commit

Permalink
Unix - uncommenting build commands
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown committed Feb 9, 2010
1 parent b546eab commit 67f6233
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inc/My/Builder/Unix.pm
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ sub build_binaries {
print "Configuring $pack->{pack}...\n";
print "(cmd: $cmd)\n";
chdir $srcdir;
###$self->do_system($cmd) or die '###ERROR### ', $?;
$self->do_system($cmd) or die '###ERROR### ', $?;
chdir $self->base_dir();
}

Expand All @@ -34,7 +34,7 @@ sub build_binaries {
print "Running make install $pack->{pack}...\n";
print "(cmd: $cmd)\n";
chdir $srcdir;
###$self->do_system($cmd) or die '###ERROR### ', $?;
$self->do_system($cmd) or die '###ERROR### ', $?;
chdir $self->base_dir();
}
return 1;
Expand Down

0 comments on commit 67f6233

Please sign in to comment.