changeset 26474:c69b7519d7eb stable

build: populate $(OCT_FILES) to restore 'make uninstall' functionality * libgui/graphics/module.mk (OCT_FILES): Append $(GRAPHICS_OCT_FILES) to the list. * libinterp/dldfcn/config-module.awk (OCT_FILES): Append $(DLDFCN_OCT_FILES) to the list.
author Mike Miller <mtmiller@octave.org>
date Sun, 06 Jan 2019 17:58:39 -0800
parents a08602475855
children 9baba1815f1c
files libgui/graphics/module.mk libinterp/dldfcn/config-module.awk
diffstat 2 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libgui/graphics/module.mk	Sun Jan 06 16:51:15 2019 -0800
+++ b/libgui/graphics/module.mk	Sun Jan 06 17:58:39 2019 -0800
@@ -174,6 +174,8 @@
 
 OCT_FILE_LIBS += $(LIBOCTGUI_GRAPHICS_LIB)
 
+OCT_FILES += $(GRAPHICS_OCT_FILES)
+
 ## Use stamp files to avoid problems with checking timestamps
 ## of symbolic links
 
--- a/libinterp/dldfcn/config-module.awk	Sun Jan 06 16:51:15 2019 -0800
+++ b/libinterp/dldfcn/config-module.awk	Sun Jan 06 17:58:39 2019 -0800
@@ -104,6 +104,9 @@
   print "OCT_FILE_LIBS += \\";
   print " $(DLDFCN_LIBS)";
   print "";
+  print "OCT_FILES += \\";
+  print " $(DLDFCN_OCT_FILES)";
+  print "";
   print "DIRSTAMP_FILES += %reldir%/$(octave_dirstamp)";
 
   print "";