1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From: NoisyCoil <noisycoil@debian.org>
Date: Tue, 5 Aug 2025 01:05:19 +0200
Subject: Tweak the Makefile
---
Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index 08f1e8f..c1736b2 100644
--- a/Makefile
+++ b/Makefile
@@ -31,10 +31,10 @@ check-data:
clean:
rm -rf target
-install: install-bin install-data update-caches
+install: install-bin install-data
install-bin:
- install -Dpm0755 -t $(DESTDIR)$(BINDIR)/ target/release/startup-disk
+ install -Dpm0755 -t $(DESTDIR)$(BINDIR)/ target/*/release/startup-disk
install-data:
desktop-file-install --dir=$(DESTDIR)$(DATADIR)/applications/ res/$(APP_ID).desktop
|