summaryrefslogtreecommitdiff
path: root/util/spkmodem_recv/Makefile
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2026-03-12 04:36:29 +0000
committerLeah Rowe <leah@libreboot.org>2026-03-12 04:36:29 +0000
commit19e0249a8ab30a566e828a37c1be65c1e2ea6c4b (patch)
tree283ff193dc60c911ba53a3a5f05be983c0683b52 /util/spkmodem_recv/Makefile
parent72eed0b12c8f944d6906b8b89545bc36f865ad0f (diff)
spkmodemrecv makefile: add -c to install
a bit pedantic. but that's my intention. for backwards compatibility with older systems. this flag means: create the directory. on modern versions on all systems, it's the default behaviour. Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'util/spkmodem_recv/Makefile')
-rw-r--r--util/spkmodem_recv/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/spkmodem_recv/Makefile b/util/spkmodem_recv/Makefile
index 95683df2..293d7475 100644
--- a/util/spkmodem_recv/Makefile
+++ b/util/spkmodem_recv/Makefile
@@ -17,7 +17,7 @@ $(PROG): spkmodem-recv.c
install: $(PROG)
mkdir -p $(DESTDIR)$(PREFIX)/bin/
- install $(PROG) $(DESTDIR)$(PREFIX)/bin/
+ install -c $(PROG) $(DESTDIR)$(PREFIX)/bin/
uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/$(PROG)