Unfortunately, I haven't realized earlier that not all the PACKAGE_* variables from configure made it into the Makefiles. Sigh, we don't use automake.
Patch attached. Ralf -- You received this message because you are subscribed to the Google Groups "FriCAS - computer algebra system" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/fricas-devel/ca0baf4f-800c-235a-e615-4246ea95c41d%40hemmecke.org.
>From e24fc67422cce74c40d020457ba729628e3bbfc6 Mon Sep 17 00:00:00 2001 From: Ralf Hemmecke <[email protected]> Date: Sat, 29 Aug 2020 22:55:45 +0200 Subject: propagate PACKAGE_* variables to Makefiles --- config/var-def.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/var-def.mk b/config/var-def.mk index e5ab36a4..2247de76 100644 --- a/config/var-def.mk +++ b/config/var-def.mk @@ -184,3 +184,6 @@ BYE=quit PREGENERATED=@PREGENERATED@ PACKAGE_VERSION = @PACKAGE_VERSION@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_URL = @PACKAGE_URL@ -- 2.17.1
