diff options
author | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2012-01-21 22:52:39 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-01-22 23:18:25 +0100 |
commit | d0252d7e39bd8c0b536c53f018661cb56cefb9f6 (patch) | |
tree | 8993d303097ed7a67702780a231277baf9580a7b | |
parent | 48558c83cbc961dac6e4a51cc202a98374436fbe (diff) | |
download | buildroot-novena-d0252d7e39bd8c0b536c53f018661cb56cefb9f6.tar.gz buildroot-novena-d0252d7e39bd8c0b536c53f018661cb56cefb9f6.zip |
pkg-infra: fix missing 3993 for AUTOTARGET's SUBDIR
Ensure <pkg>_SUBDIR gets resolved late, so that E.G. the default values
for host packages are taken into consideration.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/Makefile.autotools.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in index 0f9b2c60f..64e0730b8 100644 --- a/package/Makefile.autotools.in +++ b/package/Makefile.autotools.in @@ -93,7 +93,7 @@ $(2)_CLEAN_OPT ?= clean $(2)_UNINSTALL_STAGING_OPT ?= DESTDIR=$$(STAGING_DIR) uninstall $(2)_UNINSTALL_TARGET_OPT ?= DESTDIR=$$(TARGET_DIR) uninstall -$(2)_SRCDIR = $$($(2)_DIR)/$($(2)_SUBDIR) +$(2)_SRCDIR = $$($(2)_DIR)/$$($(2)_SUBDIR) # # Configure step. Only define it if not already defined by the package |