Skip to content
Snippets Groups Projects
Commit b64fd8ab authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'vas-makefix' into 'pregmod-master'

better tweego resolution from PATH

See merge request pregmodfan/fc-pregmod!4682
parents af7805d4 a673cc1d
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