diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2015-11-14 20:34:34 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2015-11-14 20:34:34 +0000 |
commit | 4fcbf29211773e3bbe3e2d14349d770688421f6e (patch) | |
tree | 59607d34a5c2c44e2ded7b5c03d85629828c0e65 /Makefile | |
parent | f5beb209d01086128c8b25e72a9de594032701b6 (diff) | |
download | skalibs-4fcbf29211773e3bbe3e2d14349d770688421f6e.tar.xz |
- fix make stripv2.3.8.3
- rc for 2.3.8.3
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -68,8 +68,12 @@ tgz: distclean exec rm -rf /tmp/$$package-$$version strip: $(ALL_LIBS) +ifneq ($(strip $(STATIC_LIBS)),) exec $(STRIP) -x -R .note -R .comment -R .note.GNU-stack $(STATIC_LIBS) +endif +ifneq ($(strip $(SHARED_LIBS)),) exec $(STRIP) -R .note -R .comment -R .note.GNU-stack $(SHARED_LIBS) +endif install: install-data install-sysdeps install-dynlib install-lib install-include install-data: $(ALL_DATA:src/etc/%=$(DESTDIR)$(datadir)/%) |