Skip to content
Snippets Groups Projects
Commit e3a6f5a3 authored by vas's avatar vas Committed by lowercasedonkey
Browse files

better tweego resolution from PATH

parent 68de7851
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ COMMIT := $(shell git rev-parse --short HEAD)
uname := $(shell uname -s)
arch := $(shell uname -m)
arch := $(shell if test $(arch) = x86_64 -o $(arch) = amd64; then echo 64; else echo 32; fi)
TWEEGO := $(shell command -v tweego || echo "$$?")
TWEEGO := $(shell if type tweego; then echo tweego; else echo 1; fi)
ifeq ($(TWEEGO),1)
ifeq ($(uname),Linux)
ifeq ($(arch),64)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment