summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2011-09-14 07:55:02 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2011-09-14 07:55:02 +0000
commit6d47c9c8144a7ad1ba4bb0a23a0883902aae7fbe (patch)
tree4e67e15bac9903775380d666b385cc1233604ca1
parentcef921be1367c0313f54453292670a289be5a49a (diff)
downloadATCD-6d47c9c8144a7ad1ba4bb0a23a0883902aae7fbe.tar.gz
Wed Sep 14 07:54:28 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/PerlACE/TestTarget_Android.pm: Adding of libpath is only needed for non static builds
-rw-r--r--ACE/ChangeLog5
-rw-r--r--ACE/bin/PerlACE/TestTarget_Android.pm8
2 files changed, 10 insertions, 3 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 24422699754..d2737667aed 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,8 @@
+Wed Sep 14 07:54:28 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * bin/PerlACE/TestTarget_Android.pm:
+ Adding of libpath is only needed for non static builds
+
Tue Sep 13 08:12:40 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/TestTarget.pm:
diff --git a/ACE/bin/PerlACE/TestTarget_Android.pm b/ACE/bin/PerlACE/TestTarget_Android.pm
index 310b6ab588b..5934dd1e74e 100644
--- a/ACE/bin/PerlACE/TestTarget_Android.pm
+++ b/ACE/bin/PerlACE/TestTarget_Android.pm
@@ -96,10 +96,12 @@ sub AddLibPath ($)
{
my $self = shift;
my $dir = shift;
- if (defined $ENV{'ACE_TEST_VERBOSE'}) {
- print STDERR "Adding libpath $dir\n";
+ if ($PerlACE::Static == 0) {
+ if (defined $ENV{'ACE_TEST_VERBOSE'}) {
+ print STDERR "Adding libpath $dir\n";
+ }
+ PerlACE::add_lib_path ($dir);
}
- PerlACE::add_lib_path ($dir);
}
sub CreateProcess