Skip to content

Commit 3e1c43e

Browse files
authored
fixing lib location issue through LD_LIBRARY_PATH in travis
1 parent ad147ba commit 3e1c43e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ script:
2020
- autoheader
2121
- automake --add-missing
2222
- autoreconf
23-
- ./configure --prefix=/usr/
23+
- ./configure
2424
- make lib # Check the compiler and create libblitz.a
2525
# TODO: make a failure result in non-zero exit code! (see https://travis-ci.org/slayoo/blitz/builds/359545927)
2626
- make check-testsuite # Build and check the testsuite
@@ -39,4 +39,4 @@ script:
3939
- sudo make install-html # Install Blitz++ html documentation
4040

4141
- if [[ $TRAVIS_OS_NAME == 'linux' ]]; then sudo apt-get --no-install-recommends install python-git; fi
42-
- if [[ $TRAVIS_OS_NAME == 'linux' ]]; then ./travis-ci/check-wiki-examples.py; fi
42+
- if [[ $TRAVIS_OS_NAME == 'linux' ]]; then LD_LIBRARY_PATH=/usr/local/lib ./travis-ci/check-wiki-examples.py; fi

0 commit comments

Comments
 (0)