diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2014-09-03 17:15:36 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2014-09-03 17:15:36 +0200 |
commit | 53cee8dc533ea715bdd10df081b55229c6f58893 (patch) | |
tree | d215d48ecaea23951b490b478624f178661732e4 /.travis.yml | |
parent | 49f7b902c231b6f469941485cf2310d09cb04f91 (diff) |
build: travis: Pass on CC environment variable to make
If travis compiles with clang, the environment variable CC is set. Since
the netsniff-ng build system doesn't currently pick it up unless
explicitly specified as a make variable, pass it on as such.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 4cec1ac..45713bb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,4 +7,4 @@ before_install: - sudo apt-get update -qq - sudo apt-get install -qq libnl-3-dev libnl-genl-3-dev libnetfilter-conntrack-dev libgeoip-dev liburcu-dev libpcap-dev libnet1-dev libcli-dev -script: ./configure && make +script: ./configure && make CC=$CC |