diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-17 13:37:27 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-17 13:37:27 +0000 |
commit | 32a0286b9522f0b53717f93783c5912e4b074ba7 (patch) | |
tree | 5f182dbd2018bed351173970a6fa76f5ea6ceaac | |
parent | 6ecfc313fa0680e532dc38cf35f1261ccc4a6798 (diff) | |
download | drakx-32a0286b9522f0b53717f93783c5912e4b074ba7.tar drakx-32a0286b9522f0b53717f93783c5912e4b074ba7.tar.gz drakx-32a0286b9522f0b53717f93783c5912e4b074ba7.tar.bz2 drakx-32a0286b9522f0b53717f93783c5912e4b074ba7.tar.xz drakx-32a0286b9522f0b53717f93783c5912e4b074ba7.zip |
(get_both): fix typo
-rw-r--r-- | perl-install/Xconfig/xfree.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/Xconfig/xfree.pm b/perl-install/Xconfig/xfree.pm index 4b9793c1d..9a44749ae 100644 --- a/perl-install/Xconfig/xfree.pm +++ b/perl-install/Xconfig/xfree.pm @@ -56,7 +56,7 @@ sub get_both { my ($getter, $both) = @_; if (is_empty_array_ref($both->{xfree3})) { - $both->{xfree3}->$getter; + $both->{xfree4}->$getter; } elsif (is_empty_array_ref($both->{xfree4})) { $both->{xfree3}->$getter; } else { |