From c8869aea1c4b3cbfa043a3c5b466cb3b5a3a5c98 Mon Sep 17 00:00:00 2001 From: Mason James Date: Tue, 24 Sep 2024 12:47:26 +1200 Subject: [PATCH] Bug 37824: remove references to non-existent files in Makefile.PL to test... 0/ install debhelper tool 1/ run 'DEB_BUILD_OPTIONS=nocheck dh build', observe failure make: *** No rule to make target 'koha-tmpl/intranet-tmpl/prog/js/vue/dist/erm.js.LICENSE.txt', needed by 'pm_to_blib'. Stop. dh_auto_build: error: make -j1 returned exit code 2 2/ apply patch 3/ run 'DEB_BUILD_OPTIONS=nocheck dh build', observe success Signed-off-by: Blou Signed-off-by: Katrin Fischer --- Makefile.PL | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index fd82d43c5e..62062d96b2 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -674,9 +674,7 @@ $file_map->{'koha-tmpl/intranet-tmpl/prog/css/installer.css'} = 'blib/INTRANET_T $file_map->{'koha-tmpl/intranet-tmpl/prog/css/mainpage.css'} = 'blib/INTRANET_TMPL_DIR/prog/css/mainpage.css'; $file_map->{'koha-tmpl/intranet-tmpl/prog/css/staff-global.css'} = 'blib/INTRANET_TMPL_DIR/prog/css/staff-global.css'; $file_map->{'koha-tmpl/intranet-tmpl/prog/js/vue/dist/erm.js'} = 'blib/INTRANET_TMPL_DIR/prog/js/vue/dist/erm.js'; -$file_map->{'koha-tmpl/intranet-tmpl/prog/js/vue/dist/erm.js.LICENSE.txt'} = 'blib/INTRANET_TMPL_DIR/prog/js/vue/dist/erm.js.LICENSE.txt'; $file_map->{'koha-tmpl/intranet-tmpl/prog/js/vue/dist/preservation.js'} = 'blib/INTRANET_TMPL_DIR/prog/js/vue/dist/preservation.js'; -$file_map->{'koha-tmpl/intranet-tmpl/prog/js/vue/dist/preservation.js.LICENSE.txt'} = 'blib/INTRANET_TMPL_DIR/prog/js/vue/dist/preservation.js.LICENSE.txt'; #OPAC_TMPL_DIR $file_map->{'koha-tmpl/opac-tmpl/bootstrap/css/opac.css'} = 'blib/OPAC_TMPL_DIR/bootstrap/css/opac.css'; $file_map->{'koha-tmpl/opac-tmpl/bootstrap/css/opac-rtl.css'} = 'blib/OPAC_TMPL_DIR/bootstrap/css/opac-rtl.css';