Skip to content

Commit

Permalink
Removed trailing comments from Makefile.config
Browse files Browse the repository at this point in the history
This is to avoid evaluation errors.
  • Loading branch information
eelstork authored and sh1r0 committed Jun 18, 2015
1 parent 7078913 commit 3cdff52
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Makefile.config.example
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
# CPU-only switch (uncomment to build without GPU support).
# CPU_ONLY := 1

# Comment out to disable IO dependencies
USE_LEVELDB := 1 # {IO-flag}
USE_LMDB := 1 # {IO-flag}
USE_HDF5 := 1 # {IO-flag}
USE_OPENCV := 1 # {IO-flag}
USE_SNAPPY := 1 # {IO-flag}
# comment out to disable IO dependencies
USE_LEVELDB := 1
USE_LMDB := 1
USE_HDF5 := 1
USE_OPENCV := 1
USE_SNAPPY := 1

# To customize your choice of compiler, uncomment and set the following.
# N.B. the default for Linux is g++ and the default for OSX is clang++
Expand Down
6 changes: 5 additions & 1 deletion scripts/travis/travis_setup_makefile_config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ fi

# Remove IO library settings from Makefile.config
# to avoid conflicts with CI configuration
sed -i -e '/{IO-flag}/d' Makefile.config
sed -i -e '/USE_LMDB/d' Makefile.config
sed -i -e '/USE_LEVELDB/d' Makefile.config
sed -i -e '/USE_OPENCV/d' Makefile.config
sed -i -e '/USE_HDF5/d' Makefile.config
sed -i -e '/USE_SNAPPY/d' Makefile.config

cat << 'EOF' >> Makefile.config
ANACONDA_HOME := $(HOME)/miniconda
Expand Down

0 comments on commit 3cdff52

Please sign in to comment.