Skip to content

Commit

Permalink
Add -l arg to MSYS bash invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-s committed Dec 18, 2024
1 parent 455a189 commit bfe75c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions recipe/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ pushd lib
mkdir build
pushd build
# Build libsbcl_librarian
& $env:MSYS2_CMD -c 'cmake -DCMAKE_PREFIX_PATH=$BUILD_PREFIX -DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_BUILD_TYPE=RelWithDebInfo -G ''MSYS Makefiles'' ..'
& $env:MSYS2_CMD -c "cmake --build ."
& $env:MSYS2_CMD -c "cmake --install ."
& $env:MSYS2_CMD -lc 'cmake -DCMAKE_PREFIX_PATH=$BUILD_PREFIX -DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_BUILD_TYPE=RelWithDebInfo -G ''MSYS Makefiles'' ..'
& $env:MSYS2_CMD -lc "cmake --build ."
& $env:MSYS2_CMD -lc "cmake --install ."
popd
popd

Expand Down

0 comments on commit bfe75c9

Please sign in to comment.