From aeb17d6880b29748ab445dbd35ffb136bd58b61b Mon Sep 17 00:00:00 2001 From: MJ Ray Date: Fri, 5 Oct 2007 16:37:38 -0500 Subject: [PATCH] BUGFIX: Handle etc/zebradb tree Signed-off-by: Chris Cormack Signed-off-by: Joshua Ferraro --- Makefile.PL | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index b26f35fd91..8fae520b5c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -239,8 +239,10 @@ etc files are copied to /usr/share/koha/etc/ =cut # Misc etc to koha/etc - foreach my $src (glob("etc/*")) { - $result{$src} = '$(PREFIX)/share/koha/'.$src; + foreach my $src (glob("etc/zebradb/*/*/*"),glob("etc/zebradb/*/*"),glob("etc/zebradb/*"),glob("etc/*")) { + if (-f $src) { + $result{$src} = '$(PREFIX)/share/koha/'.$src; + } } -- 2.11.0