Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot install on MacOS #25

Open
meglio opened this issue Feb 23, 2023 · 2 comments
Open

Cannot install on MacOS #25

meglio opened this issue Feb 23, 2023 · 2 comments

Comments

@meglio
Copy link

meglio commented Feb 23, 2023

Tried:

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

Error: install: illegal option -- D

image

@araujo88
Copy link
Contributor

araujo88 commented Mar 5, 2023

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

@RandyMcMillan
Copy link
Contributor

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants