Skip to content

Commit

Permalink
Unscape quotes in configure.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga committed Jan 23, 2024
1 parent 12b6833 commit 3c88716
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/metacall-configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ sub_configure() {

# Patch for Darwin Python headers
if [ "${OPERATIVE_SYSTEM}" = "Darwin" ]; then
BUILD_STRING="$BUILD_STRING -DPython3_INCLUDE_DIR=$(python3 -c \"import sysconfig; print(sysconfig.get_path('include'))\")"
# BUILD_STRING="$BUILD_STRING -DPython3_LIBRARY=$(python3 -c \"import sysconfig; print(sysconfig.get_config_var('LIBDIR'))\")"
BUILD_STRING="$BUILD_STRING -DPython3_INCLUDE_DIR=$(python3 -c "import sysconfig; print(sysconfig.get_path('include'))")"
# BUILD_STRING="$BUILD_STRING -DPython3_LIBRARY=$(python3 -c "import sysconfig; print(sysconfig.get_config_var('LIBDIR'))")"
fi

if [ $BUILD_SCRIPTS = 1 ]; then
Expand Down

0 comments on commit 3c88716

Please sign in to comment.