Configuration files that say Development or Deployment in them.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@12561
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-02-04 Darin Adler <darin@apple.com>
+
+ * Scripts/webkitdirs.pm: Add a compatibilty hack for people with old
+ Configuration files that say Development or Deployment in them.
+
2006-02-04 Darin Adler <darin@apple.com>
* Scripts/make-js-test-wrappers: Don't create a wrapper if there's a disabled
}
if ($configuration) {
chomp $configuration;
+ # compatibility for people who have old Configuration files
+ $configuration = "Release" if $configuration eq "Deployment";
+ $configuration = "Debug" if $configuration eq "Development";
} else {
$configuration = "Release";
}