nostril icon indicating copy to clipboard operation
nostril copied to clipboard

Cannot install on MacOS

Open meglio opened this issue 2 years ago • 2 comments

Tried:

brew install automake
git clone https://github.com/jb55/nostril.git
cd nostril
make install

Error: install: illegal option -- D

image

meglio avatar Feb 23 '23 00:02 meglio

Try changing these lines on the Makefile

install: all
	install -Dm644 doc/nostril.1 $(PREFIX)/share/man/man1/nostril.1
	install -Dm755 nostril $(PREFIX)/bin/nostril
	install -Dm755 nostril-query $(PREFIX)/bin/nostril-query

To these:

install: all
	install doc/nostril.1 $(PREFIX)/share/man/man1/nostril.1
	install nostril $(PREFIX)/bin/nostril
	install nostril-query $(PREFIX)/bin/nostril-query

araujo88 avatar Mar 05 '23 15:03 araujo88

https://github.com/jb55/nostril/pull/15 https://github.com/jb55/nostril/pull/15

RandyMcMillan avatar Oct 12 '23 21:10 RandyMcMillan