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

better tweego resolution from PATH

parent af7805d4
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