From 017f811ed342e30779b51a8f0e341d0278461d23 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Sun, 31 May 2015 10:20:26 +0000 Subject: [PATCH] defs.mk.in fix: SED was used before it was defined Signed-off-by: Jan Lindemann --- make/defs.mk | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/make/defs.mk b/make/defs.mk index 32edda7d..abb317fb 100644 --- a/make/defs.mk +++ b/make/defs.mk @@ -20,6 +20,11 @@ ifneq ($(wildcard pre-local.mk),) include pre-local.mk endif +# ----- executables +SED = sed +CAT = /bin/cat +SHELL = /bin/bash + # ----- standard variables PROJECT ?= $(patsubst $(FLAVOUR_PREFIX)%,%,$(notdir $(shell cd $(TOPDIR); pwd | $(SED) 's/.*\///; s/-[0-9].*//'))) ifeq ($(PROJECT),ytools) @@ -50,11 +55,6 @@ ifeq ($(PKG_FORMAT),debian) export INCLUDE_REV_IN_VERSIONS = true endif -# ----- executables -SED = sed -CAT = /bin/cat -SHELL = /bin/bash - CVS_PROJ_DIR ?= $(TOPDIR)/.. CVSTOPDIR ?= $(CVS_PROJ_DIR)/..