소스 검색

Makefile: don't use non-portable -t option (#83)

This fixes the build with the BSD install command by eschewing the GNU 
specific -t option, which is not portable.
master
ilovezfs Arun Prakash Jana 7 년 전
부모
커밋
b750e4162b
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      Makefile

+ 2
- 2
Makefile 파일 보기

@@ -33,9 +33,9 @@ debug: $(SRC)

install: all
install -m 0755 -d $(DESTDIR)$(PREFIX)/bin
install -m 0755 -t $(DESTDIR)$(PREFIX)/bin $(BIN) $(PLAYER)
install -m 0755 $(BIN) $(PLAYER) $(DESTDIR)$(PREFIX)/bin
install -m 0755 -d $(DESTDIR)$(MANPREFIX)/man1
install -m 0644 -t $(DESTDIR)$(MANPREFIX)/man1 $(BIN).1
install -m 0644 $(BIN).1 $(DESTDIR)$(MANPREFIX)/man1

uninstall:
$(RM) $(DESTDIR)$(PREFIX)/bin/$(BIN)


불러오는 중...
취소
저장