diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-07-09 08:30:38 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-07-09 08:30:38 +0000 |
commit | 9bb66ca13ec584a840c57ea5c606fe09534e01f8 (patch) | |
tree | b549d8b3f68034ef1619a024b886ed30c621a7a9 /package/rsync/rsync.mk | |
parent | 81df22641fe2bee39b9635e044dadd685eda1526 (diff) | |
download | buildroot-novena-9bb66ca13ec584a840c57ea5c606fe09534e01f8.tar.gz buildroot-novena-9bb66ca13ec584a840c57ea5c606fe09534e01f8.zip |
- the TARGET_CONFIGURE_OPTS have to be passed after $(MAKE).
Fixes build breakage as seen by Ulf et al.
Diffstat (limited to 'package/rsync/rsync.mk')
-rw-r--r-- | package/rsync/rsync.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/rsync/rsync.mk b/package/rsync/rsync.mk index cd98425cd..c22c8e6dc 100644 --- a/package/rsync/rsync.mk +++ b/package/rsync/rsync.mk @@ -35,7 +35,7 @@ $(RSYNC_DIR)/.configured: $(RSYNC_DIR)/.unpacked touch $(RSYNC_DIR)/.configured $(RSYNC_DIR)/$(RSYNC_BINARY): $(RSYNC_DIR)/.configured - $(TARGET_CONFIGURE_OPTS) $(MAKE) CC=$(TARGET_CC) -C $(RSYNC_DIR) + $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(RSYNC_DIR) $(TARGET_DIR)/$(RSYNC_TARGET_BINARY): $(RSYNC_DIR)/$(RSYNC_BINARY) install -D $(RSYNC_DIR)/$(RSYNC_BINARY) $(TARGET_DIR)/$(RSYNC_TARGET_BINARY) |