diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-04-13 20:55:20 +0100 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-04-14 17:40:36 +0300 |
commit | 307498002d6df6eae33983b48a17f0dfab5ad4c0 (patch) | |
tree | c1202307e5e89666885d10d4631420fe63933fc3 /sc/qa | |
parent | fb52f6262e933970eaf0e3d2d942c05ad55d8958 (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>' >> $@ |