]> git.sesse.net Git - casparcg/blobdiff - build-scripts/build-linux.sh
Merge pull request #545 from aruanoc/2.1.0
[casparcg] / build-scripts / build-linux.sh
index 0ee553c1a6186b310c208154d7084e782fcc3753..90112538fbaf51c6d9de6cd8faf5fb90b0ce3545 100755 (executable)
@@ -25,7 +25,7 @@ cd ../build || fail "Could not enter ../build"
 
 # Run cmake
 echo Running cmake...
-cmake -G "Unix Makefiles" -A x64 -DCMAKE_BUILD_TYPE=RelWithDebInfo .. || fail "cmake failed"
+cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=RelWithDebInfo .. || fail "cmake failed"
 
 # Run make using the number of hardware threads in BUILD_PARALLEL_THREADS
 echo Building...
@@ -44,10 +44,10 @@ mkdir "$SERVER_FOLDER/lib" || fail "Could not create $SERVER_FOLDER/lib"
 echo Copying binaries...
 cp -f  shell/lib* "$SERVER_FOLDER/lib/" || fail "Could not copy server libraries"
 cp -f  shell/*.ttf "$SERVER_FOLDER/" || fail "Could not copy font(s)"
-cp -f  shell/*.pak "$SERVER_FOLDER/" || fail "Could not copy font(s)"
 cp -f  shell/casparcg "$SERVER_FOLDER/bin/" || fail "Could not copy server executable"
 cp -f  shell/casparcg.config "$SERVER_FOLDER/" || fail "Could not copy server config"
 cp -Rf shell/locales "$SERVER_FOLDER/bin/" || fail "Could not copy server CEF locales"
+cp -f  shell/*.pak "$SERVER_FOLDER/" || fail "Could not copy CEF resources"
 
 # Copy binary dependencies
 echo Copying binary dependencies...