Skip to content

Commit

Permalink
Version 1.0.48
Browse files Browse the repository at this point in the history
  • Loading branch information
monich committed Aug 30, 2020
1 parent 27336a6 commit bb2817d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
9 changes: 8 additions & 1 deletion Makefile
Expand Up @@ -20,7 +20,7 @@ all: debug release pkgconfig

VERSION_MAJOR = 1
VERSION_MINOR = 0
VERSION_RELEASE = 47
VERSION_RELEASE = 48

# Version for pkg-config
PCVERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_RELEASE)
Expand Down Expand Up @@ -245,6 +245,13 @@ INSTALL_LIB_DIR = $(DESTDIR)$(ABS_LIBDIR)
INSTALL_INCLUDE_DIR = $(DESTDIR)/usr/include/gutil
INSTALL_PKGCONFIG_DIR = $(DESTDIR)$(ABS_LIBDIR)/pkgconfig

#
# rpm based systems expect libraries to be 755
# deb based systems expect libraries to be 644
#
# 755 works for both because dh_fixperms removes execute permissions
# from any libraries and other files that don't need it.
#
install: $(INSTALL_LIB_DIR)
$(INSTALL) -m 755 $(RELEASE_LIB) $(INSTALL_LIB_DIR)
ln -sf $(LIB) $(INSTALL_LIB_DIR)/$(LIB_SYMLINK2)
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
@@ -1,3 +1,9 @@
libglibutil (1.0.48) unstable; urgency=low

* Make library executable on rpm based systems

-- Slava Monich <slava.monich@jolla.com> Mon, 31 Aug 2020 00:07:18 +0300

libglibutil (1.0.47) unstable; urgency=low

* Added gutil_strv_addv()
Expand Down
2 changes: 1 addition & 1 deletion rpm/libglibutil.spec
@@ -1,5 +1,5 @@
Name: libglibutil
Version: 1.0.47
Version: 1.0.48
Release: 0
Summary: Library of glib utilities
Group: Development/Libraries
Expand Down

0 comments on commit bb2817d

Please sign in to comment.