Skip to content

Commit

Permalink
make: Clean up make install usage
Browse files Browse the repository at this point in the history
This fixes warnings that often happened on make install via Lakka.

```
<<< retroarch_joypad_autoconfig:target seq 11 <<<
sha256sum: packages/lakka/retroarch_base/retroarch_joypad_autoconfig/joypad_configs/udev/Nintendo: No such file or directory
sha256sum: Switch: No such file or directory
sha256sum: Left: No such file or directory
sha256sum: Joy-Con.cfg: No such file or directory
sha256sum: packages/lakka/retroarch_base/retroarch_joypad_autoconfig/joypad_configs/udev/Nintendo: No such file or directory
sha256sum: Switch: No such file or directory
sha256sum: Right: No such file or directory
sha256sum: Joy-Con.cfg: No such file or directory
```
  • Loading branch information
RobLoach committed Oct 5, 2023
1 parent 37f4295 commit 7eb4055
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ all:

install:
for driver in android dinput hid linuxraw mfi parport qnx sdl2 udev x xinput; do \
install -Dm644 -t $(DESTDIR)$(INSTALLDIR)/$$driver $$driver/*.cfg; \
for file in $$driver/*.cfg; do \
install -Dm644 -t $(DESTDIR)$(INSTALLDIR)/$$driver "$$file"; \
done \
done
install -Dm644 -t $(DESTDIR)$(DOC_DIR) COPYING README.md retropad_layout.png

Expand Down

0 comments on commit 7eb4055

Please sign in to comment.