From 8c68d2210de2a82e6ed0f7b8125fc5b0b205f2c2 Mon Sep 17 00:00:00 2001 From: mario Date: Sat, 24 Sep 2016 11:01:00 +0200 Subject: [PATCH] Add `sort` for always same build order --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ac4cbb2f..344dc11a 100644 --- a/Makefile +++ b/Makefile @@ -8,8 +8,8 @@ MAKE=$(shell which make) BASH=$(shell which bash) CARGO=$(shell which cargo) -BINS=$(shell find -maxdepth 1 -name "imag-*" -type d) -LIBS=$(shell find -maxdepth 1 -name "libimag*" -type d) +BINS=$(shell find -maxdepth 1 -name "imag-*" -type d | sort) +LIBS=$(shell find -maxdepth 1 -name "libimag*" -type d | sort) BIN_TARGETS=$(patsubst imag-%,,$(BINS)) BIN_TARGET_TESTS=$(foreach x,$(BIN_TARGETS),$(x)-test)