aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYour Name <you@example.com>2020-11-07 08:09:07 -0500
committerYour Name <you@example.com>2020-11-07 08:09:07 -0500
commit1b7760f0c488d183648842a47ff57d36f5934225 (patch)
tree42f05514b61a21871755ed5afd38eb0771a036df
parent67207e20f3dc8b9e92e45560776b5b304f964cc1 (diff)
downloadlibbible-1b7760f0c488d183648842a47ff57d36f5934225.tar.gz
libbible-1b7760f0c488d183648842a47ff57d36f5934225.tar.bz2
libbible-1b7760f0c488d183648842a47ff57d36f5934225.zip
Fixed installed binary permissions
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c10be48..c7437b2 100644
--- a/Makefile
+++ b/Makefile
@@ -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