Skip to content

Commit 2dd1476

Browse files
committed
Travis touch up: make the site recognition use the full name
Because, haha, the "imageworks" Travis account is still Travis, its not the SPI internal machine configuration. So searching 'uname -n' for "imageworks" is misleading! But searching for "imageworks.com" is ok.
1 parent 58a5935 commit 2dd1476

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ language: cpp
44
sudo: false
55
osx_image: xcode7.3
66
dist: trusty
7+
env: OSL_SITE=travis
78

89

910
# Add-ons: specify apt packages for Linux

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ CMAKE ?= cmake
3838
ifndef OSL_SITE
3939
OSL_SITE := ${shell uname -n}
4040
endif
41-
ifneq (${shell echo ${OSL_SITE} | grep imageworks},)
41+
ifneq (${shell echo ${OSL_SITE} | grep imageworks.com},)
4242
include ${working_dir}/site/spi/Makefile-bits
4343
endif
44-
ifneq (${shell echo ${OSL_SITE} | grep pixar},)
44+
ifneq (${shell echo ${OSL_SITE} | grep pixar.com},)
4545
include ${working_dir}/site/pixar/Makefile-bits
4646
endif
4747

0 commit comments

Comments
 (0)