Skip to content

Commit 1b41fcc

Browse files
committed
Fix quotes
1 parent c75b056 commit 1b41fcc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/release-binaries.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ jobs:
168168
target_cmake_flags="$target_cmake_flags -DBOOTSTRAP_BOOTSTRAP_CMAKE_PREFIX_PATH=$libxml2_prefix"
169169
# This is required to enable static linking
170170
target_cmake_flags="$target_cmake_flags -DLIBXML2_DEFINITIONS='-DLIBXML_STATIC'"
171-
target_cmake_flags="$target_cmake_flags -DCMAKE_CXX_FLAGS='-DLIBXML_STATIC'"
172-
target_cmake_flags="$target_cmake_flags -DCMAKE_C_FLAGS='-DLIBXML_STATIC'"
171+
target_cmake_flags="$target_cmake_flags -DCMAKE_CXX_FLAGS=-DLIBXML_STATIC"
172+
target_cmake_flags="$target_cmake_flags -DCMAKE_C_FLAGS=-DLIBXML_STATIC"
173173
target_cmake_flags="$target_cmake_flags -DLIBXML2_LIBRARIES=$libxml_prefix/lib/libxml2s.lib"
174174
target_cmake_flags="$target_cmake_flags -DBOOTSTRAP_LIBXML2_DEFINITIONS='-DLIBXML_STATIC'"
175175
target_cmake_flags="$target_cmake_flags -DBOOTSTRAP_CMAKE_CXX_FLAGS='-DLIBXML_STATIC'"
@@ -299,10 +299,10 @@ jobs:
299299
id: build
300300
shell: bash
301301
run: |
302-
ls -l /c/vcpkg/packages/libxml2_x64-windows/
303-
ls -l /c/vcpkg/packages/libxml2_x64-windows/lib/
304-
ls -l /c/vcpkg/packages/libxml2_x64-windows/include/
305-
ls -l /c/vcpkg/packages/libxml2_x64-windows/include/libxml2
302+
#ls -l /c/vcpkg/packages/libxml2_x64-windows/
303+
#ls -l /c/vcpkg/packages/libxml2_x64-windows/lib/
304+
#ls -l /c/vcpkg/packages/libxml2_x64-windows/include/
305+
#ls -l /c/vcpkg/packages/libxml2_x64-windows/include/libxml2
306306
# There were some issues on the ARM64 MacOS runners with trying to build x86 object,
307307
# so we need to set some extra cmake flags to disable this.
308308
cmake -G Ninja -S llvm -B ${{ steps.setup-stage.outputs.build-prefix }}/build \

0 commit comments

Comments
 (0)