Skip to content

Commit

Permalink
Put ${CMAKE_ARGS} first, so that debug works on conda-forge
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherMayes committed Sep 29, 2023
1 parent 83b6239 commit 7ebc23a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/mk-mkd
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ case ${@} in
ACC_CMAKE_ARGS=()
fi

cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} ${CMAKE_ARGS} "${ACC_CMAKE_ARGS[@]}" .. || exit 1
cmake ${CMAKE_ARGS} -DCMAKE_BUILD_TYPE=${BUILD_TYPE} "${ACC_CMAKE_ARGS[@]}" .. || exit 1
${GMAKE} -j ${ACC_SET_GMAKE_JOBS} ${ACC_EXE_NAME}
[ $? -eq 0 ] && func_display_build_time
fi
Expand Down

0 comments on commit 7ebc23a

Please sign in to comment.