summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKieran Bingham <kieran@bingham.xyz>2016-01-21 15:56:49 +0000
committerKieran Bingham <kieran@bingham.xyz>2016-01-21 15:56:49 +0000
commit4063952b0fc02b0123390267026211f632ae4bba (patch)
tree69fd172df9c8fa53994b7309a1911cf2f917be1a
parent5df96600860c23c5f08ddde4860d5f3c61997cca (diff)
binutils-gdb: Don't reconfigure unless requested
The dependancy chain caused the reconfigure to happen on every build. The | symbol, ensures that it will only run if a dependancy doesn't exist.
-rw-r--r--build-common/packages/binutils-gdb2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-common/packages/binutils-gdb b/build-common/packages/binutils-gdb
index 7e0c0f5..4c952bb 100644
--- a/build-common/packages/binutils-gdb
+++ b/build-common/packages/binutils-gdb
@@ -14,7 +14,7 @@ BINUTILS_CONF_EXT_arm:= \
--with-separate-debug-dir=/opt/STM/STLinux-2.4/devkit/armv7/target/usr/lib/debug
# Configure packages
-binutils-gdb-configure $(BINUTILS_BUILD)/Makefile: $(BINUTILS_SRC) $(BINUTILS_BUILD) $(BINUTILS_SRC)/configure
+binutils-gdb-configure $(BINUTILS_BUILD)/Makefile: | $(BINUTILS_SRC) $(BINUTILS_BUILD) $(BINUTILS_SRC)/configure
cd $(BINUTILS_BUILD) && \
CC="gcc -m32" \
$(BINUTILS_SRC)/configure \