* Fix /admin auto-linking to not try to link if the admin directory is already

there, I broke it when I factored out that code into a separate function.
* Add 'www' module to list of modules that don't get a /KDE prefix.

svn path=/trunk/kdenonbeta/kdecvs-build/; revision=412995
wilder
Michael Pyne 21 years ago
parent cac294abce
commit 8a6f354b8c
  1. 4
      HISTORY
  2. 3
      kdesvn-build

@ -1,3 +1,7 @@
Version history: 0.95
* Fix /admin directory auto-linking.
* Add 'www' module to list of modules that doesn't use /KDE prefix.
Version history: 0.94
* Allow modules of the form KDE/kdelibs to be defined as module names, in case
you'd like to mirror the layout of the Subversion repository more closely.

@ -224,6 +224,7 @@ sub svn_module_url
'valgrind' => 1,
'KDE' => 1,
'kdereview' => 1,
'www' => 1,
);
my $module_root = $module;
@ -1970,6 +1971,8 @@ sub create_admin_dir
}
}
}
else
return 1; # admin dir already there.
return (safe_system("ln -s $admindir admin") == 0);
}

Loading…
Cancel
Save