summaryrefslogtreecommitdiff
path: root/smoketestoo_native
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2011-10-20 16:36:58 +0200
committerStephan Bergmann <sbergman@redhat.com>2011-10-20 23:04:12 +0200
commitfc98a971350bed06e75443d89cef41d6bd346f7c (patch)
tree668505274f9c5e596e173a513bd0aaab392cc97b /smoketestoo_native
parentdaabd72e077b3b0a80dcde98aea87fe9a7ff06e5 (diff)
Introduced --disable-linkoo.
Diffstat (limited to 'smoketestoo_native')
-rwxr-xr-xsmoketestoo_native/makefile.mk7
1 files changed, 6 insertions, 1 deletions
diff --git a/smoketestoo_native/makefile.mk b/smoketestoo_native/makefile.mk
index e83f839fdbda..cd801847d3a6 100755
--- a/smoketestoo_native/makefile.mk
+++ b/smoketestoo_native/makefile.mk
@@ -57,9 +57,14 @@ TEST_ARGUMENTS = smoketest.doc=$(BIN)/smoketestdoc.sxw
CPPTEST_LIBRARY = $(SHL1TARGETN)
.IF "$(OS)" != "WNT" || "$(CROSS_COMPILING)" == "YES"
+.IF "$(DISABLE_LINKOO)" == "TRUE"
+my_linkoo =
+.ELSE
+my_linkoo = -l
+.END
localinstall :
$(RM) -r $(installationtest_instpath)
$(MKDIRHIER) $(installationtest_instpath)
- ooinstall -l $(installationtest_instpath)/opt
+ ooinstall $(my_linkoo) $(installationtest_instpath)/opt
cpptest : localinstall
.END