Bug 17044: Fix wrong destination for 'api' directory
authorTomas Cohen Arazi <tomascohen@theke.io>
Wed, 3 Aug 2016 17:34:12 +0000 (14:34 -0300)
committerBrendan Gallagher <brendan@bywatersolutions.com>
Fri, 5 Aug 2016 04:32:36 +0000 (04:32 +0000)
commit72d92be918eae8a9bc3c6723c155d1b0c6ba25e4
tree73dd18b593ef989e21ce52d66c5a41addd968d4c
parentebaa3543d6278fe31886310cda5b10c807e6ad8a
Bug 17044: Fix wrong destination for 'api' directory

The original Makefile.PL tweak missed to trim the directory name thus
repeating the 'api' directory like in 'api/api'.

To test:
- Make a standard install (for example in /usr/share/koha
=> FAIL: check /usr/share/koha/api/api exists
- Make a single install (for example in /home/tcohen/koha-single)
=> FAIL: check /home/tcohen/koha-single/api/api exists
- Apply the patch
- Make a standard install (for example in /usr/share/koha
=> SUCCESS: check /usr/share/koha/api exists and doesn't contain a nested 'api' dir
- Make a single install (for example in /home/tcohen/koha-single)
=> SUCCESS: check /home/tcohen/koha-single/api exists and doesn't contain a nested 'api' dir
- Sign off :-D

Note: this affects the packages too, as the standard install is used as a basis.
Signed-off-by: Benjamin Rokseth <benjamin.rokseth@kul.oslo.kommune.no>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Brendan Gallagher <brendan@bywatersolutions.com>
Makefile.PL