From bb8c14f0afdf8660d8f0fc701dadbe60f44f79a6 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Thu, 6 Sep 2018 18:57:05 -0400 Subject: [PATCH] LP#1791184: ensure that 'make clean' doesn't delete pingest.pl This patch corrects an issue where pingest.pl was treated as if it were generated from a pingest.pl.in source file during the configure step, meaning that it got deleted by 'make clean'. This patch also adds a couple helpful comments. To test ------- [1] Apply the patch. [2] From a git checkout, run the configure and make steps, followed by a 'make clean'. Verify that pingest.pl is not deleted from the source tree. Signed-off-by: Galen Charlton Signed-off-by: Jason Stephenson --- Open-ILS/src/Makefile.am | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Open-ILS/src/Makefile.am b/Open-ILS/src/Makefile.am index 444846b914..a9de4a91e0 100644 --- a/Open-ILS/src/Makefile.am +++ b/Open-ILS/src/Makefile.am @@ -75,7 +75,8 @@ core_scripts = $(examples)/oils_ctl.sh \ $(supportscr)/sitemap_generator \ $(srcdir)/extras/eg_config \ $(srcdir)/extras/openurl_map.pl \ - $(srcdir)/extras/import/marc_add_ids + $(srcdir)/extras/import/marc_add_ids \ + $(supportscr)/pingest.pl installautojs = $(autojsbinscripts) @@ -118,6 +119,8 @@ if BUILDEGJAVA OILSJAVA_DIR = java endif +# scripts that are generated from *.in files and can +# be deleted by a make clean gen_scripts = \ @srcdir@/extras/fast-extract \ @srcdir@/extras/import/marc2are.pl \ @@ -129,9 +132,10 @@ gen_scripts = \ $(supportscr)/authority_authority_linker.pl \ $(supportscr)/eg_db_config \ $(supportscr)/marc_export \ - $(supportscr)/offline-blocked-list.pl \ - $(supportscr)/pingest.pl + $(supportscr)/offline-blocked-list.pl +# config files that are generated from *.in files and can +# be deleted by a make clean gen_docs = \ $(examples)/apache/eg.conf \ $(examples)/apache/eg_vhost.conf \ -- 2.43.2