-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Patch makefile to not vendor on nix (#297)
- Loading branch information
1 parent
3277b47
commit e559e2e
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
diff --git a/Makefile.in b/Makefile.in | ||
index 9324abc..a293409 100644 | ||
--- a/Makefile.in | ||
+++ b/Makefile.in | ||
@@ -21,7 +21,7 @@ FLATPAK ?= xfalse | ||
|
||
.PHONY: all | ||
ifeq ($(FLATPAK), xtrue) | ||
-all: umu-dist umu-launcher umu-vendored | ||
+all: umu-dist umu-launcher | ||
endif | ||
|
||
.PHONY: install | ||
@@ -30,8 +30,8 @@ SOURCE_DATE_EPOCH = $(shell LC_ALL=C date --date='@1580601600') | ||
all: zipapp | ||
install: zipapp-install | ||
else | ||
-all: umu-dist umu-docs umu-launcher umu-vendored | ||
-install: umu-install umu-launcher-install umu-vendored-install | ||
+all: umu-dist umu-docs umu-launcher | ||
+install: umu-install umu-launcher-install | ||
endif | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters