diff options
author | Your Name <you@example.com> | 2021-05-19 11:20:30 -0400 |
---|---|---|
committer | Your Name <you@example.com> | 2021-05-19 11:20:30 -0400 |
commit | 41e9b6128ed8588c01d2aa2fb7d71af81709873e (patch) | |
tree | a6f6fdf16f76ea90628e79c4bbda57d545a421a4 /Makefile | |
parent | 7232d37525a71be626c95b3858e5590601ce0193 (diff) | |
download | libbible-41e9b6128ed8588c01d2aa2fb7d71af81709873e.tar.gz libbible-41e9b6128ed8588c01d2aa2fb7d71af81709873e.tar.bz2 libbible-41e9b6128ed8588c01d2aa2fb7d71af81709873e.zip |
Fixed name of bash completion on installationv1.0.0
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ install: $(LIBRARY) $(EXECUTABLE) install -d $(DESTDIR)$(PREFIX)/bin/ install -m 755 bible $(DESTDIR)$(PREFIX)/bin/ install -d $(DESTDIR)`pkg-config --variable=completionsdir bash-completion` - install -m 644 bible.bash $(DESTDIR)`pkg-config --variable=completionsdir bash-completion` + install -m 644 bible.bash $(DESTDIR)`pkg-config --variable=completionsdir bash-completion`/$(EXECUTABLE) test: $(OBJECTS) testLibbible.o $(CC) $(OBJECTS) testLibbible.o -o $@ $(LDFLAGS) `pkg-config $(LIBS) --libs` -lcppunit |