소스 검색

Set LINUX_PORTABLE to off on CI

Sets LINUX_PORTABLE to off on CI. This matches what is default in
OBS Studio. Most developers won't know to change this, as the deb
file will install to the wrong place, causing the plugin not to load.
cg2121 2 년 전
부모
커밋
732b4a58cc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      .github/scripts/.build.zsh

+ 1 - 1
.github/scripts/.build.zsh

@@ -220,7 +220,7 @@ Usage: %B${functrace[1]%:*}%b <option> [<options>]
         ;;
       linux-*)
         if (( ${+CI} )) {
-          cmake_args+=(-DCMAKE_INSTALL_PREFIX=/usr)
+          cmake_args+=(-DCMAKE_INSTALL_PREFIX=/usr -DLINUX_PORTABLE=OFF)
         }
         num_procs=$(( $(nproc) + 1 ))
         ;;