Automated update

This commit is contained in:
briano%netscape.com 1999-09-03 00:06:24 +00:00
parent 7017a941de
commit ada6f17b62

22
configure vendored
View File

@ -9842,6 +9842,7 @@ fi
if test "$_INCREMENTAL_MAKEFILES"; then
MAKEFILES="
Makefile
xpinstall/packager/Makefile
build/unix/nspr_my_config.mk
build/unix/nspr_my_overrides.mk
build/package/rpm/mozilla.spec
@ -9849,22 +9850,11 @@ if test "$_INCREMENTAL_MAKEFILES"; then
config/autoconf.mk
webshell/embed/gtk/mozilla_config.mk
"
$PERL -e '
foreach (split /\s+/, "'"$MAKEFILES"'") {
$dir = /(.*)\/.*/ ? "$1" : ".";
while (not defined $have_seen{$dir}) {
$have_seen{$dir} = 1;
last if -d $dir;
push @dirs, $dir;
$dir =~ s/\/[^\/]+$//;
}
}
sub by_subdir_count {
split(/\//,$a) <=> split(/\//,$b)
}
system "mkdir ".join(" ",sort by_subdir_count @dirs) if @dirs;'
for file in $MAKEFILES
do
dir=`dirname $file`
if test ! -d $dir; then rm -f $dir; mkdir -p $dir; else true; fi
done
else
for dir in lib modules modules/security build build/package; do
if test ! -d $dir; then rm -f $dir; mkdir $dir; fi