diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-06-22 12:12:23 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-06-22 12:12:23 +0000 |
commit | 1b17cfd9246edab4b642e4d09779a6169a739d95 (patch) | |
tree | 52edc1c376b355658953c3a152fcc6e7ea29fb9d /gendistrib | |
parent | bf3df848123fdb323ba6f5bc3ad351a8a2328609 (diff) | |
download | rpmtools-1b17cfd9246edab4b642e4d09779a6169a739d95.tar rpmtools-1b17cfd9246edab4b642e4d09779a6169a739d95.tar.gz rpmtools-1b17cfd9246edab4b642e4d09779a6169a739d95.tar.bz2 rpmtools-1b17cfd9246edab4b642e4d09779a6169a739d95.tar.xz rpmtools-1b17cfd9246edab4b642e4d09779a6169a739d95.zip |
fix typo
Diffstat (limited to 'gendistrib')
-rwxr-xr-x | gendistrib | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -146,7 +146,7 @@ foreach my $e (grep { !$_->{noneedrebuild} } @hdlists) { $nooutput ? '--quiet' : (), $nobadrpm ? '--no-bad-rpm' : (), $nomd5sum || $e->{noneedredomd5} ? "--no-md5sum" : (), - -e "file-deps" ? "--file-deps $file_deps" : (), + -e $file_deps ? "--file-deps $file_deps" : (), ); my $cmd = "genhdlist2 $options $e->{path}"; print "running $cmd\n" unless $nooutput; |