Shizcow / dmenu-rs

A pixel perfect port of dmenu, rewritten in Rust with extensive plugin support
GNU General Public License v3.0
197 stars 9 forks source link

fix broken make install #50

Closed benjaminedwardwebb closed 1 year ago

benjaminedwardwebb commented 1 year ago

I broke make install in an earlier commit :'( (sorry)

Specifically, the following line in make install does not work

sed "s/VERSION/$(VERSION)/g" < target/stest.1 > $(DESTDIR)$(MANPREFIX)/man1/stest.1

This fixes it. I'd forgotten to keep the man page copy into target step when rewriting stest in Rust.

benjaminedwardwebb commented 11 months ago

there is a typo, according to folder structure there has to be a / between man and src: cp src/man/src/stest.1 target/

Hi @c0ffein. I was going through old email and saw your comment here.

I don't quite understand what you mean by your comment. In the diff that was merged, there is a / between man and src (both of them), like so: cp src/man/src/stest.1 target/.

Are you still encountering build failures?