+2005-06-06 Maciej Stachowiak <mjs@apple.com>
+
+ * Scripts/build-webkit: Chop newline off of $productDir to avoid problems with logic to copy files ther.
+
2005-06-06 Maciej Stachowiak <mjs@apple.com>
* Scripts/build-webkit: Install WebKitSystemInterface stuff into build products dir.
# Check that an Xcode product directory is set.
open PRODUCT, "defaults read com.apple.Xcode PBXProductDirectory 2> /dev/null |" or die;
my $productDir = <PRODUCT>;
+chomp $productDir;
close PRODUCT;
if (!$productDir) {
die "No product directory set. Please set the 'Place Build Products' preference to 'Customized location' in XCode Building Preferences.\n";
}
chdir "WebKitLibraries" or die;
+print "${productDir}/libWebKitSystemInterface.a";
`ditto libWebKitSystemInterface.a "${productDir}/libWebKitSystemInterface.a"`;
`mkdir -p "${productDir}/usr/local/include"`;
`ditto WebKitSystemInterface.h "${productDir}/usr/local/include/WebKitSystemInterface.h"`;