diff options
author | Ruediger Timm <rt@openoffice.org> | 2010-04-21 09:58:45 +0200 |
---|---|---|
committer | Ruediger Timm <rt@openoffice.org> | 2010-04-21 09:58:45 +0200 |
commit | 6372b74edb4a38f93de1fe826b8a2369ce1f0413 (patch) | |
tree | ff0d387d7b187ac4142dcb2acb724eb627fa845b | |
parent | 5686df9c5ff5ffe8201db537b9299595b017698e (diff) |
DEV300 masterfix: #i10000#: Some fixes for the new smoketest: solenv/inc/installationtest.mk used wrong variables (UPDMINOR is not set on RE master builds, use LAST_MINOR from minor.mk instead), smoketestoo_native/makefile.mk needed adaptions to new install set naming scheme.ooo/DEV300_m77
-rw-r--r-- | smoketestoo_native/makefile.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/smoketestoo_native/makefile.mk b/smoketestoo_native/makefile.mk index b288c7718..8b497ddb4 100644 --- a/smoketestoo_native/makefile.mk +++ b/smoketestoo_native/makefile.mk @@ -56,12 +56,12 @@ $(BIN)/smoketestdoc.sxw: data/smoketestdoc.sxw .IF "$(OS)" != "WNT" $(installationtest_instpath).flag : \ - $(shell ls $(installationtest_instset)/OOo_*_install.tar.gz) + $(shell ls $(installationtest_instset)/OOo_*_install_*.tar.gz) $(RM) -r $(installationtest_instpath) $(MKDIRHIER) $(installationtest_instpath) cd $(installationtest_instpath) && \ - $(GNUTAR) xfz $(installationtest_instset)/OOo_*_install.tar.gz - $(MV) $(installationtest_instpath)/OOo_*_install \ + $(GNUTAR) xfz $(installationtest_instset)/OOo_*_install_*.tar.gz + $(MV) $(installationtest_instpath)/OOo_*_install_* \ $(installationtest_instpath)/opt $(TOUCH) $@ cpptest : $(installationtest_instpath).flag |