mirror of
https://tildegit.org/envs/pb.git
synced 2025-04-04 06:15:51 +00:00
Fix makefile installing pb.d to root
On systems without bash completion, CPLDIR is empty, but the makefile still tries to install the bash completion and fails.
This commit is contained in:
parent
7edfbbecd6
commit
243709cee7
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -26,7 +26,7 @@ install:
|
|||
@mkdir -p $(MANDIR)/man1
|
||||
@cp -f pb.1 $(MANDIR)/man1/pb.1
|
||||
@chmod 644 $(MANDIR)/man1/pb.1
|
||||
ifdef CPLDIR
|
||||
ifeq ($(CPLDIR),)
|
||||
@echo Installing the command completion to $(CPLDIR)
|
||||
@mkdir -p $(CPLDIR)
|
||||
@cp -f pb.d $(CPLDIR)/pb
|
||||
|
@ -38,7 +38,7 @@ uninstall:
|
|||
@rm -f $(BINDIR)/pb
|
||||
@echo Removing the manual page from $(MANDIR)/man1
|
||||
@rm -f $(BINDIR)/man1/pb.1
|
||||
ifdef CPLDIR
|
||||
ifeq ($(CPLDIR),)
|
||||
@echo Removing the command completion from $(CPLDIR)
|
||||
@rm -f $(CPLDIR)/pb
|
||||
endif
|
||||
|
|
Loading…
Add table
Reference in a new issue