Skip to content

Commit

Permalink
Merge 8571565 into 9f300e1
Browse files Browse the repository at this point in the history
  • Loading branch information
iphydf committed Feb 22, 2018
2 parents 9f300e1 + 8571565 commit dd70ae7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
6 changes: 1 addition & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ matrix:

install:
- test -f _install/host/protobuf.stamp || scripts/build-host -j$(nproc || sysctl -n hw.ncpu) $PWD/_install/host/protobuf.stamp
- if [ -e _git/toxcore ]; then (cd _git/toxcore && git pull); fi
- if [ -e _git/toxcore ]; then (cd _git/toxcore && git reset --hard && git clean -fdx && git pull); fi

script:
- scripts/build-$TARGET -j$(nproc || sysctl -n hw.ncpu) $GOAL
Expand All @@ -55,7 +55,3 @@ after_success:

before_cache:
- rm -f android-ndk-*.zip

branches:
only:
- master
1 change: 0 additions & 1 deletion cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ if(LIBTOXCORE_FOUND)
)
else()
target_link_libraries(${PROJECT_NAME}
${TOXAV_STATIC_LIBRARIES}
${TOXCORE_STATIC_LIBRARIES}
)
endif()
Expand Down
2 changes: 1 addition & 1 deletion scripts/dependencies.mk
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ $(TOOLCHAIN)/toxcore.stamp: $(foreach f,$(shell cd $(SRCDIR)/toxcore && git ls-f
$(TOOLCHAIN)/toxcore.stamp: $(SRCDIR)/toxcore $(TOOLCHAIN_FILE) $(foreach i,libsodium opus libvpx,$(TOOLCHAIN)/$i.stamp)
@$(PRE_RULE)
mkdir -p $(BUILDDIR)/$(notdir $<)
cd $(BUILDDIR)/$(notdir $<) && cmake $(SRCDIR)/$(notdir $<) $($(notdir $<)_CONFIGURE)
cd $(BUILDDIR)/$(notdir $<) && cmake $(SRCDIR)/$(notdir $<) $($(notdir $<)_CONFIGURE) -DMUST_BUILD_TOXAV=ON
$(MAKE) -C $(BUILDDIR)/$(notdir $<) install
mkdir -p $(@D) && touch $@
@$(POST_RULE)
Expand Down

0 comments on commit dd70ae7

Please sign in to comment.