summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2012-11-07 23:56:10 +0100
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2012-11-07 23:56:10 +0100
commita71851ac5dca2bcf5f7f0c48e96a4c8c1b227836 (patch)
treeb79ddbdb0412261d49cfd09f7ddd7d5388ee7fe1 /mk
parent8ef77f23dab5cea74125c8e76e1fb8cc7121dbfe (diff)
downloadembtoolkit-a71851ac5dca2bcf5f7f0c48e96a4c8c1b227836.tar.gz
embtoolkit-a71851ac5dca2bcf5f7f0c48e96a4c8c1b227836.tar.bz2
embtoolkit-a71851ac5dca2bcf5f7f0c48e96a4c8c1b227836.tar.xz
Toolchain: linux headers: fix clean macro (once again)
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'mk')
-rw-r--r--mk/linux.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/linux.mk b/mk/linux.mk
index 22f4cd6..e44a553 100644
--- a/mk/linux.mk
+++ b/mk/linux.mk
@@ -78,7 +78,7 @@ define embtk_cleanup_linux
if [ -d $(LINUX_BUILD_DIR) ] && \
[ -e $(call __embtk_pkg_dotinstalled_f,linux_headers) ]; then \
$(MAKE) -C $(LINUX_BUILD_DIR) distclean; \
- rm -rf $$(call __embtk_pkg_dotinstalled_f,linux_headers); \
+ rm -rf $(call __embtk_pkg_dotinstalled_f,linux_headers); \
fi
endef