summaryrefslogtreecommitdiff
path: root/ios
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-11-26 10:51:42 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-11-26 10:53:12 +0100
commitd90d47e513f21b07095722559db997fa41d1645e (patch)
tree70a01ba7b09a3641f530e207c9772bdb45c182ea /ios
parent5be1635d45e28e047af0cde4e387b07a3131cc9d (diff)
version ini-file's ProductMajor/Minor are unused
...and had started to have different values in instdir (ProductMajor=450, ProductMinor=0) vs. installation sets (ProductMajor=50, ProductMinor=) Change-Id: I4db2c07b5f7b011218833fc355a3097eb13d0cd4
Diffstat (limited to 'ios')
-rw-r--r--ios/CustomTarget_LibreOffice_app.mk2
-rw-r--r--ios/CustomTarget_MobileLibreOffice_app.mk4
-rw-r--r--ios/CustomTarget_TiledLibreOffice_app.mk4
3 files changed, 2 insertions, 8 deletions
diff --git a/ios/CustomTarget_LibreOffice_app.mk b/ios/CustomTarget_LibreOffice_app.mk
index 719ff0905bb7..555c98b5873c 100644
--- a/ios/CustomTarget_LibreOffice_app.mk
+++ b/ios/CustomTarget_LibreOffice_app.mk
@@ -123,8 +123,6 @@ $(SCRIPT_OUTPUT_FILE_0) : $(call gb_Executable_get_target,LibreOffice)
echo 'AllLanguages=en-US' && \
echo 'BuildVersion=' && \
echo 'buildid=$(buildid)' && \
- echo 'ProductMajor=360' && \
- echo 'ProductMinor=1' && \
: ) > $(appdir)/program/versionrc
#
# Copy a sample document... good old test1.odt...
diff --git a/ios/CustomTarget_MobileLibreOffice_app.mk b/ios/CustomTarget_MobileLibreOffice_app.mk
index 2e4b6db484d5..215fb5a9e3e0 100644
--- a/ios/CustomTarget_MobileLibreOffice_app.mk
+++ b/ios/CustomTarget_MobileLibreOffice_app.mk
@@ -98,9 +98,7 @@ MobileLibreOffice_setup:
echo '[Version]' > $$file; \
echo 'AllLanguages=en-US' >> $$file; \
echo 'BuildVersion=' >> $$file; \
- echo "buildid=$(BUILDID)" >> $$file; \
- echo 'ProductMajor=360' >> $$file; \
- echo 'ProductMinor=1' >> $$file;
+ echo "buildid=$(BUILDID)" >> $$file;
#==============================================================================
# Clean
diff --git a/ios/CustomTarget_TiledLibreOffice_app.mk b/ios/CustomTarget_TiledLibreOffice_app.mk
index 98cc8cca6d80..62f44567a964 100644
--- a/ios/CustomTarget_TiledLibreOffice_app.mk
+++ b/ios/CustomTarget_TiledLibreOffice_app.mk
@@ -111,9 +111,7 @@ TiledLibreOffice_setup:
echo '[Version]' > $$file; \
echo 'AllLanguages=en-US' >> $$file; \
echo 'BuildVersion=' >> $$file; \
- echo "buildid=$(BUILDID)" >> $$file; \
- echo 'ProductMajor=360' >> $$file; \
- echo 'ProductMinor=1' >> $$file;
+ echo "buildid=$(BUILDID)" >> $$file;
# Clean
$(call gb_CustomTarget_get_clean_target,ios/TiledLibreOffice):