Skip to content

Commit

Permalink
More typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Kartik Thakore committed Aug 11, 2009
1 parent 7da4be0 commit 99734ed
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions make/lib/SDL/Build/MSWin32.pm
Expand Up @@ -39,9 +39,8 @@ use File::Spec::Functions;
sub fetch_includes
{

warn "Environment variable INCLUDE is empty\n" unless $ENV{INCLUDE}
and
return map { $_ => 1 } grep { $_ } split( ';', $ENV{INCLUDE} );
warn "Environment variable INCLUDE is empty\n" unless $ENV{INCLUDE};
return map { $_ => 1 } grep { $_ } split( ';', $ENV{INCLUDE} ) if $ENV{INCLUDE};
return '-I.';
}

Expand Down Expand Up @@ -171,7 +170,7 @@ sub alt_compile_flags
my $self = shift;
my $sdl_dir = shift;

return $self->SUPER::alt_compile_flages($sdl_dir).' -D_GNU_SOURCE=1 -Dmain=SDL_main';
return $self->SUPER::alt_compile_flags($sdl_dir).' -D_GNU_SOURCE=1 -Dmain=SDL_main';
}

1;

0 comments on commit 99734ed

Please sign in to comment.