Skip to content
This repository was archived by the owner on Sep 30, 2022. It is now read-only.

Commit 46710ba

Browse files
committed
travis: fix a typo and create bogus directories to avoid compiler warnings
1 parent 90f2940 commit 46710ba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ env:
4040
global:
4141
- AM_MAKEFLAGS="-j4"
4242
- CPPFLAGS="-I$HOME/bogus/include"
43-
- LDFLAGS="-I$HOME/bogus/lib"
43+
- LDFLAGS="-L$HOME/bogus/lib"
4444
- LD_LIBRARY_PATH="$HOME/bogus/lib"
4545
matrix:
4646
- GCC_VERSION=default
@@ -57,6 +57,7 @@ before_install:
5757
- if [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ "$GCC_VERSION" == "5" ]] ; then sudo apt-get --assume-yes install gcc-5 g++-5 gfortran-5; fi
5858
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cd libfabric && ./autogen.sh && ./configure --prefix=$HOME/bogus --enable-usnic --disable-verbs $COMPILERS && make install && cd .. ; fi
5959
- if [[ "$TRAVIS_OS_NAME" == "osx" ]] && [[ "$GCC_VERSION" == "5" ]] ; then brew update; brew unlink gcc ; brew install gcc; fi
60+
- mkdir -p $HOME/bogus/include $HOME/bogus/lib
6061

6162
# Note that we use "make -k" to do the entire build, even if there was a
6263
# build error in there somewhere. This prevents us from needing to submit

0 commit comments

Comments
 (0)