diff options
author | Your Name <you@example.com> | 2020-11-07 08:09:07 -0500 |
---|---|---|
committer | Your Name <you@example.com> | 2020-11-07 08:09:07 -0500 |
commit | 1b7760f0c488d183648842a47ff57d36f5934225 (patch) | |
tree | 42f05514b61a21871755ed5afd38eb0771a036df /Makefile | |
parent | 67207e20f3dc8b9e92e45560776b5b304f964cc1 (diff) | |
download | libbible-1b7760f0c488d183648842a47ff57d36f5934225.tar.gz libbible-1b7760f0c488d183648842a47ff57d36f5934225.tar.bz2 libbible-1b7760f0c488d183648842a47ff57d36f5934225.zip |
Fixed installed binary permissions
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ install: $(LIBRARY) $(EXECUTABLE) install -d $(DESTDIR)$(PREFIX)/include/ install -m 644 libbible.h $(DESTDIR)$(PREFIX)/include/ install -d $(DESTDIR)$(PREFIX)/bin/ - install -m 644 bible $(DESTDIR)$(PREFIX)/bin/ + install -m 755 bible $(DESTDIR)$(PREFIX)/bin/ test: $(OBJECTS) testLibbible.o $(CC) $(LDFLAGS) $(OBJECTS) testLibbible.o -o $@ `pkg-config $(LIBS) --libs` -lcppunit |