Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix travis condition check #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

asb-capfan
Copy link

$travis may be undef after GetOptions("travis" => $travis);
Will cause errors like this during build:

Unknown option: installdirs
Welcome to Alien::SDL2 module installation
------------------------------------------
checking operating system... MSWin32
checking for gcc... yes
checking build system type... MSWin32-x64-multi-thread
checking platform specific module... using 'My::Builder::Windows'
checking for config script... no
checking for prebuilt binaries... yes, 1 option(s)
Use of uninitialized value $travis in numeric eq (==) at Build.PL line 195.

$travis may be undef after GetOptions("travis" => \$travis);
Will cause errors like this during build:

	Unknown option: installdirs
	Welcome to Alien::SDL2 module installation
	------------------------------------------
	checking operating system... MSWin32
	checking for gcc... yes
	checking build system type... MSWin32-x64-multi-thread
	checking platform specific module... using 'My::Builder::Windows'
	checking for config script... no
	checking for prebuilt binaries... yes, 1 option(s)
	Use of uninitialized value $travis in numeric eq (==) at Build.PL line 195.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant