1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: only install the perl modules to the libdir, not the example test scripts
Origin: vendor
Forwarded: not-needed
Author: Ben Webb <bjwebb67@googlemail.com>
Reviewed-by: gregor herrmann <gregoa@debian.org>
Last-Update: 2013-10-18
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -37,4 +37,7 @@
'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
'INC' => $yazinc, # e.g., '-I/usr/include/other'
# OPTIMIZE => "-Wdeclaration-after-statement -g -O0",
+ 'PM' => {'GRS1.pm' => '$(INST_LIBDIR)/GRS1.pm',
+ 'OID.pm' => '$(INST_LIBDIR)/OID.pm',
+ 'SimpleServer.pm' => '$(INST_LIBDIR)/SimpleServer.pm'}
);
|