From 4801579cf534fd5796d7cc7640d09c35e5a1c306 Mon Sep 17 00:00:00 2001 From: Michael Shigorin Date: Tue, 13 Sep 2011 18:54:43 +0300 Subject: [PATCH] profile.mk: export PATH including bin/ Mostly needed for tags2lists at the moment; note that PATH is exported for make recipes but has no effect on make functions. --- pkg.in/lists/tagged/README | 2 +- profile.mk | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/pkg.in/lists/tagged/README b/pkg.in/lists/tagged/README index 03a8d18f..04bce784 100644 --- a/pkg.in/lists/tagged/README +++ b/pkg.in/lists/tagged/README @@ -1,5 +1,5 @@ Этот каталог содержит тегированные списки; на данный момент -реализация (bin/tags2lists) требует, чтобы каждый тег был +реализация (tags2lists) требует, чтобы каждый из тегов был отдельным словом, состоящим из символов из набора a-zA-Z0-9_ (внимание: не используйте в слове "-"); рекомендуется разделять слова "+" или "," (стандарт ещё не устоялся). diff --git a/profile.mk b/profile.mk index 1e0ee354..a77a1df2 100644 --- a/profile.mk +++ b/profile.mk @@ -5,6 +5,7 @@ SYMLINK = build # this could have come from environment; # if not, can be symlinked if r/w, or made anew # NB: immediate assignment matters +# NB: PATH has no effect here ifndef BUILDDIR BUILDDIR := $(shell [ -s "$(SYMLINK)" ] \ && realpath "$(SYMLINK)" \ @@ -14,7 +15,9 @@ endif # even smart caching only hurts when every build goes from scratch NO_CACHE ?= 1 -export BUILDDIR NO_CACHE +PATH := $(CURDIR)/bin:$(PATH) + +export BUILDDIR NO_CACHE PATH # holds a postprocessor; shell test executes in particular situation # NB: not exported, for toplevel use only