diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-04-13 20:55:20 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-04-13 20:55:20 +0100 |
commit | c102e3431a0556a73b15425f005d56bdbc698c5d (patch) | |
tree | ba4412e8e1e5da89c2212560e7a1cef054c936af /sc/qa | |
parent | 387315e0bf821de7651225a155cce2a1dd2e8d27 (diff) |
windows needs BRAND_BASE_DIR as well
Diffstat (limited to 'sc/qa')
-rw-r--r-- | sc/qa/unit/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/unit/Makefile b/sc/qa/unit/Makefile index 7bdedd0163ce..87694f116f34 100644 --- a/sc/qa/unit/Makefile +++ b/sc/qa/unit/Makefile @@ -45,7 +45,7 @@ services.rdb : echo '<?xml version="1.0"?><components xmlns="http://openoffice.org/2010/uno-components">' > $@ $(gb_AWK) -- \ '/^<\?xml version.*/ { next; } \ - { gsub(/vnd.sun.star.expand:\$$OOO_BASE_DIR\/program/, "vnd.sun.star.expand:$$OOO_BASE_DIR",$$0); print; }' \ + { gsub(/vnd.sun.star.expand:\$$OOO_BASE_DIR\/program/, "vnd.sun.star.expand:$$OOO_BASE_DIR",$$0); gsub(/vnd.sun.star.expand:\$$BRAND_BASE_DIR\/program/, "vnd.sun.star.expand:$$BRAND_BASE_DIR",$$0); print; }' \ $^ >> $@ echo '</components>' >> $@ |