1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
Index: horae-071~svn537/mkartemis.PL
===================================================================
--- horae-071~svn537.orig/mkartemis.PL
+++ horae-071~svn537/mkartemis.PL
@@ -7,6 +7,11 @@ if (! -e 'artemis_parts/rc.pl') {
system('/usr/bin/perl ./mkartemisrc.PL "lib/Ifeffit/lib/artemis/artemis.ini"');
}
+## ----- build ARTEMIS rc if it doesn't exist already
+if (! -e 'artemis_parts/rc.pl') {
+ system('/usr/bin/perl ./mkartemisrc.PL "lib/Ifeffit/lib/artemis/artemis.ini"');
+}
+
## ----- build ARTEMIS
(-e "bin/artemis") and unlink "bin/artemis";
open my $TO, ">bin/artemis";
Index: horae-071~svn537/mkathena.PL
===================================================================
--- horae-071~svn537.orig/mkathena.PL
+++ horae-071~svn537/mkathena.PL
@@ -7,6 +7,11 @@ if (! -e 'athena_parts/rc.pl') {
system('/usr/bin/perl ./mkathenarc.PL "lib/Ifeffit/lib/athena/athena.ini"');
}
+## ----- build ATHENA rc if it doesn't exist already
+if (! -e 'athena_parts/rc.pl') {
+ system('/usr/bin/perl ./mkathenarc.PL "lib/Ifeffit/lib/athena/athena.ini"');
+}
+
## ----- build ATHENA
(-e "bin/athena") and unlink "bin/athena";
open my $TO, ">bin/athena";
|