boludoz / lz4

Automatically exported from code.google.com/p/lz4
Other
0 stars 0 forks source link

static library and header files permissions #130

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
From Prasad Pandit :

Makefile installs the static library and header files with executable 
permissions, instead of just read permissions. It causes rpmlint(1) to throw 
errors saying 'spurious-executable-perm' for these files.

        @install -m 755 lz4.h $(DESTDIR)$(INCLUDEDIR)/lz4.h

        @install -m 755 lz4hc.h $(DESTDIR)$(INCLUDEDIR)/lz4hc.h
        @install -m 755 liblz4.a $(DESTDIR)$(LIBDIR)/liblz4.a
==>
        @install -m 644 lz4.h $(DESTDIR)$(INCLUDEDIR)/lz4.h

        @install -m 644 lz4hc.h $(DESTDIR)$(INCLUDEDIR)/lz4hc.h
        @install -m 644 liblz4.a $(DESTDIR)$(LIBDIR)/liblz4.a

Original issue reported on code.google.com by yann.col...@gmail.com on 7 Jun 2014 at 4:24

GoogleCodeExporter commented 9 years ago
Patch integrated into "dev" branch on github mirror :

https://github.com/Cyan4973/lz4/tree/dev

Original comment by yann.col...@gmail.com on 11 Jun 2014 at 9:09

GoogleCodeExporter commented 9 years ago

Original comment by yann.col...@gmail.com on 22 Jun 2014 at 10:48

GoogleCodeExporter commented 9 years ago
Fixed into r118

Original comment by yann.col...@gmail.com on 26 Jun 2014 at 9:50