diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-10-22 08:57:20 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-10-22 08:57:20 +0000 |
commit | 3da7d959658483485d41d81db6b7b459aa8a8cdd (patch) | |
tree | 43ce537c81ae69e835de225dbfcdbc9d309e683d | |
parent | 09976aa5627eb857d7cc097a0209af21033fbe27 (diff) | |
download | upstream-3da7d959658483485d41d81db6b7b459aa8a8cdd.tar.gz upstream-3da7d959658483485d41d81db6b7b459aa8a8cdd.tar.bz2 upstream-3da7d959658483485d41d81db6b7b459aa8a8cdd.zip |
rules.mk: reduce shexport to one line to allow it to be put in a target context
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43018 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | rules.mk | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -278,8 +278,7 @@ V_$(subst .,_,$(subst -,_,$(subst /,_,$(1)))) endef define shexport -$(call shvar,$(1))=$$(call $(1)) -export $(call shvar,$(1)) +export $(call shvar,$(1))=$$(call $(1)) endef define include_mk |