diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-09-30 15:14:43 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-09-30 15:14:43 +0000 |
commit | aed4e4c6e7f10448d7fe06b47cef9c048a457c14 (patch) | |
tree | be3238c4d2bcc66b327c819df8980a06e034a39e | |
parent | 8225e7d80f816140883ea565847505b2baace466 (diff) | |
download | rpmtools-aed4e4c6e7f10448d7fe06b47cef9c048a457c14.tar rpmtools-aed4e4c6e7f10448d7fe06b47cef9c048a457c14.tar.gz rpmtools-aed4e4c6e7f10448d7fe06b47cef9c048a457c14.tar.bz2 rpmtools-aed4e4c6e7f10448d7fe06b47cef9c048a457c14.tar.xz rpmtools-aed4e4c6e7f10448d7fe06b47cef9c048a457c14.zip |
Don't create a list file, unless explicitly told so (with --list)
-rw-r--r-- | genhdlist | 28 |
1 files changed, 19 insertions, 9 deletions
@@ -37,6 +37,7 @@ GetOptions( 'dest=s' => \$dest, 'headersdir=s' => \$tmpdir, 'help|h' => sub { usage(); exit 0 }, + list => \my $list, nobadrpm => \$nobadrpm, noclean => \$noclean, md5sum => \$md5sum, @@ -62,8 +63,10 @@ if ($subdir && !-e $subdir) { mkdir $subdir or die "Can't mkdir $subdir: $!n"; } -$subdir && -d $subdir && -w _ && -x _ - or die "$subdir isn't a writable directory, bailing out\n"; +if ($subdir) { + -d $subdir && -w _ && -x _ + or die "$subdir isn't a writable directory, bailing out\n"; +} !-e $tmpdir or -o _ or die "$tmpdir is not owned by you, bailing out\n"; rmtree($tmpdir) unless $noclean; @@ -73,8 +76,11 @@ my @rpms; my %rpmslist; # get rpm list -open my $list, ">", "${subdir}list$suffix" - or die "Can't create list file [${subdir}list$suffix]: $!\n"; +my $listfh; +if ($list) { + open $listfh, ">", "${subdir}list$suffix" + or die "Can't create list file [${subdir}list$suffix]: $!\n"; +} foreach my $dir (@dir) { print "parsing $dir\n" unless $nooutput; @rpms = (); @@ -103,10 +109,10 @@ foreach my $dir (@dir) { # This code will become useless... see above foreach my $rpm (@rpms) { $rpmslist{($rpm =~ m!.*/(.*)\z!)[0]} or next; - print $list "$rpm\n"; + print $listfh "$rpm\n" if $list; } } -close $list; +close $listfh if $listfh; # create hdlist file # No rpms, exit ! @@ -158,6 +164,10 @@ before operation). Put temporary files in directory. +=item --list + +Creates a list file. + =item --md5sum Generates an MD5SUM file. @@ -191,9 +201,9 @@ of RPM packages found in the directories passed on the command-line. By default it will put the hdlist and synthesis files in the current directory. -It will also generate a F<list> file containing the relative paths to all -RPMs. Consequently, the paths to the directories passed to F<genhdlist> must -be relative ones. +If the option B<--list> is given, it will also generate a F<list> file containing +the relative paths to all RPMs. Consequently, the paths to the directories +passed to F<genhdlist> must be relative ones. The temporary header directory (overriden by B<--headersdir>) defaults to F<~/tmp/.build_hdlist>, then F<$TMPDIR/.build_hdlist> and |