diff options
author | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2024-01-28 16:06:41 +0000 |
---|---|---|
committer | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2024-01-28 16:06:41 +0000 |
commit | d30f14fae69072bdce08c4af1583d461c2330a49 (patch) | |
tree | abce826dfbc2a10997a6535d3fb10a74e6f58367 | |
parent | c427bd8cbfd69876ac57cb3a5ece51eb375a2dcd (diff) |
audio/ecasound: fix build with python3.1[x]
PR: 275494
-rw-r--r-- | audio/ecasound/files/patch-configure | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/audio/ecasound/files/patch-configure b/audio/ecasound/files/patch-configure new file mode 100644 index 000000000000..f0346c8262ec --- /dev/null +++ b/audio/ecasound/files/patch-configure @@ -0,0 +1,20 @@ +--- configure.orig 2020-01-11 12:16:00 UTC ++++ configure +@@ -6156,7 +6156,7 @@ $as_echo "none" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 + $as_echo "none" >&6; } + if test x$PYTHONPATH != xnone; then +- python_prefix_tmp=`python -c "import sys; print (sys.prefix + '/lib/python' + sys.version[:3])"` ++ python_prefix_tmp=`python -c "import sysconfig; print(sysconfig.get_path('stdlib'))"` + else + python_prefix_tmp="DIR" + fi +@@ -6178,7 +6178,7 @@ $as_echo "$as_me: WARNING: + " >&2;} + else + pymoddirs="/usr/local/lib /usr/lib" +- pymoddirsmore=`python -c "import sys; print (sys.prefix + '/lib/python' + sys.version[:3])"` ++ pymoddirsmore=`python -c "import sysconfig; print(sysconfig.get_path('stdlib'))"` + pymoddirs="$pymoddirs $pymoddirsmore" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $pymoddirs" >&5 + $as_echo "$pymoddirs" >&6; } |