diff options
author | Francois Pons <fpons@mandriva.com> | 2003-09-01 13:38:20 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-09-01 13:38:20 +0000 |
commit | 89c581090d843514895af15bc4ad5f2b793274f1 (patch) | |
tree | dcbc0054e9984262184f3a76f8f2762ca9fd5636 /urpm.pm | |
parent | ba1517d5d3667f5257a196d0530f69db312074ad (diff) | |
download | urpmi-89c581090d843514895af15bc4ad5f2b793274f1.tar urpmi-89c581090d843514895af15bc4ad5f2b793274f1.tar.gz urpmi-89c581090d843514895af15bc4ad5f2b793274f1.tar.bz2 urpmi-89c581090d843514895af15bc4ad5f2b793274f1.tar.xz urpmi-89c581090d843514895af15bc4ad5f2b793274f1.zip |
fixed @EXPORT for N() by using qw(N) instead of qw(*N) which breaks rpmdrake.
Diffstat (limited to 'urpm.pm')
-rw-r--r-- | urpm.pm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ use vars qw($VERSION @ISA @EXPORT); $VERSION = '4.4'; @ISA = qw(Exporter URPM); -@EXPORT = qw(*N); +@EXPORT = qw(N); use URPM; use URPM::Resolve; |