Skip to content

Commit

Permalink
Merge pull request #163 from steve-chavez/fix-makefile
Browse files Browse the repository at this point in the history
fix: pkg-config only finding mpc with sudo
  • Loading branch information
orangeduck committed Jul 23, 2023
2 parents 0d75f36 + 318747b commit 1a59a5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ clean:
rm -rf -- $(DIST)

install: all
install -d -m644 $(DESTDIR)$(PREFIX)/include
install -d -m644 $(DESTDIR)$(PREFIX)/lib/pkgconfig
install -d -m644 $(DESTDIR)$(PREFIX)/share/$(PROJ)
install -d -m645 $(DESTDIR)$(PREFIX)/include
install -d -m645 $(DESTDIR)$(PREFIX)/lib/pkgconfig
install -d -m645 $(DESTDIR)$(PREFIX)/share/$(PROJ)
install -m755 -t $(DESTDIR)$(PREFIX)/lib $(DIST)/lib*
install -m644 -t $(DESTDIR)$(PREFIX)/share/$(PROJ) $(PROJ).c $(PROJ).h
install -m644 $(PROJ).h $(DESTDIR)$(PREFIX)/include/$(PROJ).h
Expand Down

0 comments on commit 1a59a5f

Please sign in to comment.