diff options
author | Thierry Vignaud <tv@mageia.org> | 2011-04-21 00:20:15 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2011-04-21 00:20:15 +0000 |
commit | b2e9ef91992116c18be9b1c4abaeae794b35d82e (patch) | |
tree | c5c4e4a0b86c4765b321012f22940a74c87e3b1a | |
parent | c8bd8f93a8a9c91d69f63f626ffe6d544068e21c (diff) | |
download | perl-URPM-b2e9ef91992116c18be9b1c4abaeae794b35d82e.tar perl-URPM-b2e9ef91992116c18be9b1c4abaeae794b35d82e.tar.gz perl-URPM-b2e9ef91992116c18be9b1c4abaeae794b35d82e.tar.bz2 perl-URPM-b2e9ef91992116c18be9b1c4abaeae794b35d82e.tar.xz perl-URPM-b2e9ef91992116c18be9b1c4abaeae794b35d82e.zip |
fix building after last commit
-rwxr-xr-x | Makefile.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.PL b/Makefile.PL index 9b5b3d0..eb0a823 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -50,7 +50,7 @@ ChangeLog: } my @rpmflags; -my $ldflags = `pkg-config --libs rpm -lrpmbuild`; +my $ldflags = `pkg-config --libs rpm` . ' -lrpmbuild'; if ($hversion ge hexversion("4.9.0") && $hversion lt hexversion("5.0")) { # rpm.org version 4.9.0 push @rpmflags, "-DRPM490"; |