]> git.sesse.net Git - casparcg/commitdiff
Merge pull request #519 from krzyc/patch-1
authorHellGore <helge.norberg@gmail.com>
Mon, 30 Jan 2017 15:32:27 +0000 (16:32 +0100)
committerGitHub <noreply@github.com>
Mon, 30 Jan 2017 15:32:27 +0000 (16:32 +0100)
Remove platform name from linux build script

build-scripts/build-linux.sh

index 338d9780a0504fb2f8c29063460a95ec2521c51a..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...