diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-06-20 20:13:08 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-06-20 20:13:08 +0000 |
commit | c54d7f45ac62c349804a28bc84479f333d31291f (patch) | |
tree | 0ab587b595f2cbaa3b3cbd6c3709e9f06951d558 | |
parent | 12c383b56de2b8ab6c291522fbd40b067babf4aa (diff) | |
download | buildroot-novena-c54d7f45ac62c349804a28bc84479f333d31291f.tar.gz buildroot-novena-c54d7f45ac62c349804a28bc84479f333d31291f.zip |
Fix broken dependancy
-rw-r--r-- | make/iproute2.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/iproute2.mk b/make/iproute2.mk index 36c4a0819..0863277d8 100644 --- a/make/iproute2.mk +++ b/make/iproute2.mk @@ -22,7 +22,7 @@ $(DL_DIR)/$(IPROUTE2_PATCH): iproute2-source: $(DL_DIR)/$(IPROUTE2_SOURCE) #$(DL_DIR)/$(IPROUTE2_PATCH) -$(IPROUTE2_DIR)/.unpacked: iproute2-source +$(IPROUTE2_DIR)/.unpacked: $(DL_DIR)/$(IPROUTE2_SOURCE) #$(DL_DIR)/$(IPROUTE2_PATCH) rm -rf $(IPROUTE2_DIR).orig $(IPROUTE2_DIR) zcat $(DL_DIR)/$(IPROUTE2_SOURCE) | tar -C $(BUILD_DIR) -xvf - #zcat $(DL_DIR)/$(IPROUTE2_PATCH) | patch -p1 -d $(IPROUTE2_DIR) |