diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-04-09 15:51:52 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-04-09 15:51:52 +0000 |
commit | c4593a0869e33d170d64a70938e09a8415ec9194 (patch) | |
tree | eb6b51fd6343224cbfea09793c589982eddee969 /Makefile.PL | |
parent | bf257bc422b2d2448888fba95cba4ea148aa97f9 (diff) | |
download | perl-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.PL | 5 |
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', ); |