Commit 666ef336 authored by jouke's avatar jouke
Browse files

one more reference to python 3.12 fixed

parent cfcff1e1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -155,7 +155,7 @@ $(DEBUG_BUILD_DIR)%.o: $(SOURCE_DIR)%.cpp | $(BUILD_TREE_DEBUG)
# `$+` is a space-separated list of all the prerequisites, including any duplicates
#	(we probably don't have duplicates, but that's sometimes useful when linking libraries)
$(RELEASE_BIN): $(OBJECTS_RELEASE) | $(RELEASE_BUILD_DIR)
	$(CXX) -o $@ $+ -lpython3.12 
	$(CXX) -o $@ $+ -lpython3.$(python_version_minor)
$(NOPYTHON_BIN): $(OBJECTS_NOPYTHON) | $(NOPYTHON_BUILD_DIR)
	$(CXX) -o $@ $+ 
$(GW_BIN): $(OBJECTS_GW) | $(GW_BUILD_DIR)