Fix error which I seem to get now for reading in persistent data. This method seems to be more reliable.

svn path=/trunk/KDE/kdesdk/scripts/kdesvn-build; revision=844529
wilder
Michael Pyne 18 years ago
parent 8d3ff3eb6c
commit 34ea4ffa0a
  1. 5
      kdesvn-build

@ -3302,7 +3302,10 @@ sub read_persistent_options
# a hash called persistent-options which we can then merge into our
# package_opts.
my $persistent_options = eval "my $persistent_data";
my $persistent_options;
# eval must appear after declaration of $persistent_options
eval $persistent_data;
if ($@)
{
# Failed.

Loading…
Cancel
Save