Skip to content

Commit

Permalink
added missing space in cflags and ldflags
Browse files Browse the repository at this point in the history
  • Loading branch information
FROGGS committed Jun 25, 2012
1 parent 86c2b9a commit 672aebe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inc/My/Builder/Unix.pm
Expand Up @@ -123,8 +123,8 @@ sub _get_configure_cmd {
my ($self, $pack, $prefixdir) = @_;
my $extra = '';
my $escaped_prefixdir = $self->escape_path( $prefixdir );
my $extra_cflags = "-I$escaped_prefixdir/include" . $self->get_additional_cflags();
my $extra_ldflags = "-L$escaped_prefixdir/lib" . $self->get_additional_libs();
my $extra_cflags = "-I$escaped_prefixdir/include " . $self->get_additional_cflags();
my $extra_ldflags = "-L$escaped_prefixdir/lib " . $self->get_additional_libs();
my $extra_PATH = "";
my $uname = $Config{archname};
my $stdout = '';
Expand Down

0 comments on commit 672aebe

Please sign in to comment.