aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.PL
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2004-04-09 15:51:52 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2004-04-09 15:51:52 +0000
commitc4593a0869e33d170d64a70938e09a8415ec9194 (patch)
treeeb6b51fd6343224cbfea09793c589982eddee969 /Makefile.PL
parentbf257bc422b2d2448888fba95cba4ea148aa97f9 (diff)
downloadperl-URPM-c4593a0869e33d170d64a70938e09a8415ec9194.tar
perl-URPM-c4593a0869e33d170d64a70938e09a8415ec9194.tar.gz
perl-URPM-c4593a0869e33d170d64a70938e09a8415ec9194.tar.bz2
perl-URPM-c4593a0869e33d170d64a70938e09a8415ec9194.tar.xz
perl-URPM-c4593a0869e33d170d64a70938e09a8415ec9194.zip
Force INSTALLDIRS=vendor in the Makefile.PL, for local testing
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.PL b/Makefile.PL
index 72bf988..34df9db 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -16,7 +16,8 @@ WriteMakefile(
'MAKEFILE' => 'Makefile',
'OBJECT' => 'URPM.o',
'VERSION_FROM' => 'URPM.pm',
- 'LIBS' => [ $libs ], # e.g., '-lm'
+ 'LIBS' => [ $libs ],
'DEFINE' => $define,
- 'INC' => '-I/usr/include/rpm', # e.g., '-I/usr/include/other'
+ 'INC' => '-I/usr/include/rpm',
+ INSTALLDIRS => 'vendor',
);