Bug 19067: Map clubs/ into INTRANET_CGI_DIR in Makefile.PL
authorTomas Cohen Arazi <tomascohen@theke.io>
Wed, 9 Aug 2017 15:27:00 +0000 (12:27 -0300)
committerFridolin Somers <fridolin.somers@biblibre.com>
Tue, 12 Sep 2017 14:04:02 +0000 (16:04 +0200)
commit2c90bd3dd184a46060dc9b7ee185dc91521ec1d1
tree641153ea522b51d285b090e042b577258d01f0e7
parent92b08a23e3b2c001d208b82b6ffee2af756ca51f
Bug 19067: Map clubs/ into INTRANET_CGI_DIR in Makefile.PL

This patch adds the required entry in Makefile.PL so the clubs/ dir is correctly installed
during the make install step.

To test:
- Run:
  $ cd kohaclone
  $ perl Makefile.PL
- Follow any install method and options
- Run
  $ make
  $ ls blib/INTRANET_CGI_DIR/ | grep clubs
=> FAIL: No clubs dir
- Run:
  $ make clean
- Apply this patch
- Run:
   $ perl Makefile.PL
- Follow any install method and options
- Run
  $ make
  $ ls blib/INTRANET_CGI_DIR/ | grep clubs
=> SUCCESS: The clubs/ dir is correctly picked for inclussion in the intranet cgi dir
- Sign off :-D

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
(cherry picked from commit e57b3a6c4d9bb6319f038909832281dd4a9e39e5)
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
Makefile.PL