소스 검색

still fixing travis

Julius Pfrommer 9 년 전
부모
커밋
d28b9b3792
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tools/travis_linux_script.sh

+ 1 - 1
tools/travis_linux_script.sh

@@ -54,8 +54,8 @@ sudo update-alternatives --config gcc
 
 echo "Building the C++ example"
 mkdir -p build && cd build
-gcc -std=c99 -c open62541.c
 cp ../../open62541.* .
+gcc -std=c99 -c open62541.c
 g++-4.8 ../examples/server.cpp -I./ open62541.o -o cpp-server
 cd .. && rm build -rf