diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-02-15 09:11:44 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-02-15 09:11:44 +0000 |
commit | 43750f2338ccfc28518234374c9a0e2af424eb61 (patch) | |
tree | 9b7e2a9eb0ce164881b093a23dab477607bba70d | |
parent | e70b93f0257ee88cb16fc10490bfba4caef6c622 (diff) | |
download | perl-MDK-Common-43750f2338ccfc28518234374c9a0e2af424eb61.tar perl-MDK-Common-43750f2338ccfc28518234374c9a0e2af424eb61.tar.gz perl-MDK-Common-43750f2338ccfc28518234374c9a0e2af424eb61.tar.bz2 perl-MDK-Common-43750f2338ccfc28518234374c9a0e2af424eb61.tar.xz perl-MDK-Common-43750f2338ccfc28518234374c9a0e2af424eb61.zip |
fix building doc without buildrequiring perl-MDK-Common (thanks to Gary L. Greene)
-rw-r--r-- | MDK/Common.pm.pl | 2 | ||||
-rw-r--r-- | perl-MDK-Common.spec | 3 | ||||
-rw-r--r-- | perl_checker.src/perl_checker.html.pl | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/MDK/Common.pm.pl b/MDK/Common.pm.pl index 4ba99ba..ea3cbe6 100644 --- a/MDK/Common.pm.pl +++ b/MDK/Common.pm.pl @@ -74,7 +74,7 @@ use vars qw(@ISA @EXPORT $VERSION); #); # perl_checker: RE-EXPORT-ALL @EXPORT = map { @$_ } map { values %{'MDK::Common::' . $_ . 'EXPORT_TAGS'} } grep { /::$/ } keys %MDK::Common::; -$VERSION = "1.1.21"; +$VERSION = "1.1.22"; 1; EOF diff --git a/perl-MDK-Common.spec b/perl-MDK-Common.spec index 2616f36..8cc3b10 100644 --- a/perl-MDK-Common.spec +++ b/perl-MDK-Common.spec @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT # MODIFY IN THE CVS: cvs.mandrakesoft.com:/cooker soft/perl-MDK-Common %changelog +* Tue Feb 15 2005 Pixel <pixel@mandrakesoft.com> 1.1.22-1mdk +- fix building doc without buildrequiring perl-MDK-Common (thanks to Gary L. Greene) + * Thu Dec 23 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.21-1mdk - MDK::Common::File: add secured_output() (secured version of output()) - MDK::System: make setVarsInShMode be paranoid for all files in /home diff --git a/perl_checker.src/perl_checker.html.pl b/perl_checker.src/perl_checker.html.pl index 5928f70..cb90f6d 100644 --- a/perl_checker.src/perl_checker.html.pl +++ b/perl_checker.src/perl_checker.html.pl @@ -113,7 +113,7 @@ It has advantages but also some drawbacks for team project: coding rules help learning incrementally EOF -use lib 'test'; +use lib ('test', '..'); use read_t; sub get_example { my ($file) = @_; |