1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: Export CXX in python/Makefin.in
Up to python2.11, CXX was ignored by setuptools. This is no longer the case
starting with python3.12.
Author: Thibaut Paumard <thibaut@debian.org>
Origin: vendor
Bug: https://github.com/gyoto/Gyoto/issues/23
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1080222
Last-Update: 2024-09-12
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/python/Makefile.in
+++ b/python/Makefile.in
@@ -87,6 +87,7 @@
export CFLAGS
export CPPFLAGS
export CXXFLAGS
+export CXX
export CC
GYOTO_EXTENSIONS = gyoto/_core$(PYTHON_EXTENSION_SUFFIX) \
|