diff options
author | Olivier Thauvin <nanardon@mandriva.org> | 2004-01-16 18:04:13 +0000 |
---|---|---|
committer | Olivier Thauvin <nanardon@mandriva.org> | 2004-01-16 18:04:13 +0000 |
commit | 3551615f2759ca353afe103f2e950dd0da6ee76a (patch) | |
tree | 0c474a36de72f6dd6f82c70e543d816233369b6c /genhdlist | |
parent | 557895cd1544cf3a75dc72604b9447859ba19334 (diff) | |
download | rpmtools-3551615f2759ca353afe103f2e950dd0da6ee76a.tar rpmtools-3551615f2759ca353afe103f2e950dd0da6ee76a.tar.gz rpmtools-3551615f2759ca353afe103f2e950dd0da6ee76a.tar.bz2 rpmtools-3551615f2759ca353afe103f2e950dd0da6ee76a.tar.xz rpmtools-3551615f2759ca353afe103f2e950dd0da6ee76a.zip |
fix genhdlist without arg4.5.18
Diffstat (limited to 'genhdlist')
-rw-r--r-- | genhdlist | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -62,7 +62,7 @@ my @dir = @ARGV ? @ARGV : ("."); grep { m!^/! } @dir and die "Directory path to parse should be relative"; -$dest and chdir $dest or die "can't chdir in directory $dest"; +$dest and do { chdir $dest or die "can't chdir in directory $dest"; }; rmtree($tmpdir) unless $noclean; mkpath($tmpdir); |