diff options
author | Monsta <[email protected]> | 2015-01-14 14:01:01 +0300 |
---|---|---|
committer | infirit <[email protected]> | 2015-01-14 19:20:40 +0100 |
commit | ac77fb9abfa4504d965cd9e9c9837dc0bb4f5b81 (patch) | |
tree | 07470a3f23213f30813fcc42b2d8e88088102aa4 | |
parent | 8faecc75ba26efd13de44353debf6424494a98ce (diff) | |
download | mate-user-share-ac77fb9abfa4504d965cd9e9c9837dc0bb4f5b81.tar.bz2 mate-user-share-ac77fb9abfa4504d965cd9e9c9837dc0bb4f5b81.tar.xz |
renamed extension lib
this has a few benefits:
- the new name looks more consistent among other caja extension libs
- less chance to confuse it with caja-share extension
- proper extension description and about dialog due to the new name
corresponding to .caja-extension file name (see https://github.com/mate-desktop/mate-user-share/issues/26)
-rw-r--r-- | src/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index faba8e8..641ce14 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -68,16 +68,16 @@ mate_file_share_properties_LDADD = \ $(USER_SHARE_CONFIG_LIBS) caja_extensiondir = $(CAJADIR) -caja_extension_LTLIBRARIES = libcaja-share-extension.la +caja_extension_LTLIBRARIES = libcaja-user-share.la -libcaja_share_extension_la_SOURCES = \ +libcaja_user_share_la_SOURCES = \ caja-share-bar.c \ caja-share-bar.h \ share-extension.c \ $(NULL) -libcaja_share_extension_la_LIBADD = libuser-share-common.la $(EXTENSION_LIBS) -libcaja_share_extension_la_LDFLAGS = -avoid-version -module -no-undefined +libcaja_user_share_la_LIBADD = libuser-share-common.la $(EXTENSION_LIBS) +libcaja_user_share_la_LDFLAGS = -avoid-version -module -no-undefined EXTRA_DIST = marshal.list |