mirror of
https://github.com/proxytunnel/proxytunnel.git
synced 2026-01-23 02:34:59 +00:00
Merge pull request #27 from ilovezfs/portable-install
Makefile: don't use non-portable -D option
This commit is contained in:
commit
1cb544cdd5
2 changed files with 4 additions and 2 deletions
3
Makefile
3
Makefile
|
|
@ -87,7 +87,8 @@ clean:
|
|||
$(MAKE) -C docs clean
|
||||
|
||||
install:
|
||||
install -Dp -m0755 $(name) $(DESTDIR)$(bindir)/$(name)
|
||||
install -d $(DESTDIR)$(bindir)
|
||||
install -p -m555 $(name) $(DESTDIR)$(bindir)
|
||||
$(MAKE) -C docs install
|
||||
|
||||
.c.o:
|
||||
|
|
|
|||
|
|
@ -8,7 +8,8 @@ htmltargets = $(patsubst %.adoc, %.html, $(adoctargets))
|
|||
docs: proxytunnel.1 $(htmltargets)
|
||||
|
||||
install: proxytunnel.1
|
||||
install -Dp -m0644 proxytunnel.1 $(DESTDIR)$(mandir)/man1/proxytunnel.1
|
||||
install -d $(DESTDIR)$(mandir)/man1
|
||||
install -p proxytunnel.1 $(DESTDIR)$(mandir)/man1
|
||||
|
||||
clean:
|
||||
rm -f proxytunnel.1 *.html *.xml
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue