make-makefile for the XForms build requires arguments numbering two to

operate as expected.  The first is the location of the build directory.
The second is the depth of the current working directory relative to the
source directory.  (where source directory there may need to be described
as object directory, ...)
This commit is contained in:
cltbld 2005-06-10 23:21:51 +00:00
Родитель 3bf7e847da
Коммит 363a55c727
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -737,13 +737,13 @@ sub main {
my $datestamp = "$c_year-$c_month-$c_day-$c_hour-$Settings::milestone";
if ($Settings::BuildXForms) {
TinderUtils::run_shell_command "cd $objdir/extensions/schema-validation; $objdir/build/autoconf/make-makefile";
TinderUtils::run_shell_command "cd $objdir/extensions/schema-validation; $objdir/build/autoconf/make-makefile -t $objdir -d ../..";
TinderUtils::run_shell_command "make -C $objdir/extensions/schema-validation";
TinderUtils::run_shell_command "cd $objdir/extensions/xforms; $objdir/build/autoconf/make-makefile";
TinderUtils::run_shell_command "cd $objdir/extensions/xforms; $objdir/build/autoconf/make-makefile -t $objdir -d ../..";
TinderUtils::run_shell_command "make -C $objdir/extensions/xforms";
TinderUtils::run_shell_command "cd $objdir/extensions/xforms/package; $objdir/build/autoconf/make-makefile";
TinderUtils::run_shell_command "cd $objdir/extensions/xforms/package; $objdir/build/autoconf/make-makefile -t $objdir -d ../../..";
TinderUtils::run_shell_command "make -C $objdir/extensions/xforms/package xpi";
}