From 37df2fcbf9b370d33ea7e0ab34951b19ceadd4d3 Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Tue, 14 Apr 2015 13:01:30 +0100 Subject: [PATCH] travis --- .travis.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 90fad4cb..2b8286a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,12 +11,14 @@ before_install: - sudo apt-get install python-dev python3-dev - wget http://ftp.gnome.org/pub/GNOME/sources/gobject-introspection/1.31/gobject-introspection-1.31.22.tar.xz - tar -xf gobject-introspection-1.31.22.tar.xz - - cd gobject-introspection-1.31.22 && ./configure --prefix=/usr && make - - sudo bash -c 'cd gobject-introspection-1.31.22 && make install' + - export DIR=$(pwd)/gobject-introspection-1.31.22 + - cd $DIR && ./configure --prefix=/usr && make + - sudo bash -c 'cd $DIR && make install' - wget http://ftp.gnome.org/pub/GNOME/sources/pygobject/3.10/pygobject-3.10.2.tar.xz - tar -xf pygobject-3.10.2.tar.xz - - cd pygobject-3.10.2 && ./configure --prefix=/usr && make - - sudo bash -c 'cd pygobject-3.10.2 && make install' + - export DIR=$(pwd)/pygobject-3.10.2 + - cd $DIR && ./configure --prefix=/usr && make + - sudo bash -c 'cd $DIR && make install' before_script: - ./bootstrap.sh - ./configure