summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Mladek <pmladek@suse.cz>2013-05-28 17:30:30 +0200
committerPetr Mladek <pmladek@suse.cz>2013-05-29 13:54:19 +0200
commit5281a6c101d3a2b6ee54fbba7924510325ca37a6 (patch)
tree589a6bfe23e9f8e7121d851a1b57171942f0b660
parentd34c759cd2352754037f74e0e6302c64c6af66da (diff)
fix UNIXFILENAME variable for the Linux desktop integreation (fdo#64707)
There was a mistage when merging the clean up. Note that $(UNIXFILENAME.$*) is not correctly substituted if the variables are define by another VAR.bla variables. This is why we need to hardcode the lowercase names here. Change-Id: I9110083122175cdbd09baa0533d890a7ef6d8213
-rw-r--r--sysui/productlist.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysui/productlist.mk b/sysui/productlist.mk
index 00d471e5efc4..b4a712e64415 100644
--- a/sysui/productlist.mk
+++ b/sysui/productlist.mk
@@ -13,8 +13,8 @@ PKGVERSIONSHORT := $(LIBO_VERSION_MAJOR).$(LIBO_VERSION_MINOR)
PRODUCTNAME.libreoffice := LibreOffice
PRODUCTNAME.libreofficeodev := LibreOfficeDev
PRODUCTNAME.oxygenoffice := OxygenOffice
-UNIXFILENAME.libreoffice := $(PRODUCTNAMELC.libreoffice)$(PKGVERSIONSHORT)
-UNIXFILENAME.libreofficedev := $(PRODUCTNAMELC.libreofficedev)$(PKGVERSIONSHORT)
-UNIXFILENAME.oxygenoffice := $(PRODUCTNAMELC.oxygenoffice)$(PKGVERSIONSHORT)
+UNIXFILENAME.libreoffice := libreoffice$(PKGVERSIONSHORT)
+UNIXFILENAME.libreofficedev := libreofficedev$(PKGVERSIONSHORT)
+UNIXFILENAME.oxygenoffice := oxygenoffice$(PKGVERSIONSHORT)
# vim: set noet sw=4 ts=4: