diff options
author | Andras Timar <andras.timar@collabora.com> | 2015-06-18 15:43:15 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2015-06-18 16:26:01 +0200 |
commit | df1fa04b0d1341e7cb87ef16e2ec2c6447835cc5 (patch) | |
tree | 19c936bafe6df21cd0de7430481575c1507fe647 /readlicense_oo | |
parent | 3090550b5297c86b63ba09ed1aa13bce4c0e5b70 (diff) |
Put LICENSE/NOTICE files to Resources on OSX in instdir case, too
Change-Id: I59444cf36d829f8f726c9301ee8393d5ca16196c
Diffstat (limited to 'readlicense_oo')
-rw-r--r-- | readlicense_oo/Package_files.mk | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/readlicense_oo/Package_files.mk b/readlicense_oo/Package_files.mk index e84681f1ce3c..1f06bddea33c 100644 --- a/readlicense_oo/Package_files.mk +++ b/readlicense_oo/Package_files.mk @@ -15,11 +15,16 @@ ifneq ($(OS),WNT) $(eval $(call gb_Package_add_file,readlicense_oo_files,LICENSE,LICENSE)) endif +ifneq ($(OS),MACOSX) $(eval $(call gb_Package_add_file,readlicense_oo_files,NOTICE,NOTICE)) - $(eval $(call gb_Package_add_file,readlicense_oo_files,LICENSE.fodt,LICENSE.fodt)) $(eval $(call gb_Package_add_file,readlicense_oo_files,CREDITS.fodt,CREDITS.fodt)) - $(eval $(call gb_Package_add_file,readlicense_oo_files,LICENSE.html,LICENSE.html)) +else +$(eval $(call gb_Package_add_file,readlicense_oo_files,Resources/NOTICE,NOTICE)) +$(eval $(call gb_Package_add_file,readlicense_oo_files,Resources/LICENSE.fodt,LICENSE.fodt)) +$(eval $(call gb_Package_add_file,readlicense_oo_files,Resources/CREDITS.fodt,CREDITS.fodt)) +$(eval $(call gb_Package_add_file,readlicense_oo_files,Resources/LICENSE.html,LICENSE.html)) +endif # vim: set noet sw=4 ts=4: |