-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Travis: fix version of Glib::Object::Introspection to 0.048
Until configure failures are fixed Updates #770
- Loading branch information
1 parent
668ebd2
commit 5d1d440
Showing
1 changed file
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,7 +52,10 @@ before_install: | |
- if [ $BD_TEST_GUI ]; then sudo apt-get install libgoocanvas-2.0-dev; fi; | ||
|
||
# Here as well as cpanfile because of dependency problems if not installed before Gnome2::Canvas | ||
- if [ $BD_TEST_GUI ]; then cpanm --notest ExtUtils::Depends ExtUtils::PkgConfig Glib Gtk3 GooCanvas2; fi; | ||
- if [ $BD_TEST_GUI ]; then cpanm --notest ExtUtils::Depends ExtUtils::PkgConfig; fi; | ||
# install failures for 0.049 | ||
- if [ $BD_TEST_GUI ]; then cpanm --notest Glib::Object::[email protected]; fi; | ||
- if [ $BD_TEST_GUI ]; then cpanm --notest Glib Gtk3 GooCanvas2; fi; | ||
|
||
- if [ $BD_TEST_GUI ]; then cpanm --quiet --installdeps --notest --with-all-features .; fi; | ||
|
||
|