diff options
author | Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> | 2008-09-18 08:42:56 +0000 |
---|---|---|
committer | Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> | 2008-09-18 08:42:56 +0000 |
commit | e410210c08e7d4907f6f42609e199549d44b97b3 (patch) | |
tree | 68965e98119ea60090d08e147ad23c6070c16b7a /package/audio/aumix | |
parent | aff967f068965dac43231d7c8a17ba87871f3712 (diff) | |
download | buildroot-novena-e410210c08e7d4907f6f42609e199549d44b97b3.tar.gz buildroot-novena-e410210c08e7d4907f6f42609e199549d44b97b3.zip |
aumix: fix install rule to target to support multiple projects
This patch will let aumix depend on an installed file on the target root file
system instead of touched file.
Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
Diffstat (limited to 'package/audio/aumix')
-rw-r--r-- | package/audio/aumix/aumix.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/package/audio/aumix/aumix.mk b/package/audio/aumix/aumix.mk index d30b3a7be..4ee7b0a0a 100644 --- a/package/audio/aumix/aumix.mk +++ b/package/audio/aumix/aumix.mk @@ -41,11 +41,10 @@ $(AUMIX_DIR)/.configured: $(AUMIX_DIR)/.unpacked $(AUMIX_DIR)/src/aumix: $(AUMIX_DIR)/.configured $(MAKE) CC=$(TARGET_CC) -C $(AUMIX_DIR) -$(AUMIX_DIR)/.installed: $(AUMIX_DIR)/src/aumix +$(TARGET_DIR)/usr/bin/aumix: $(AUMIX_DIR)/src/aumix $(MAKE) -C $(AUMIX_DIR) DESTDIR=$(TARGET_DIR) install - touch $@ -aumix: uclibc ncurses $(AUMIX_DIR)/.installed +aumix: uclibc ncurses $(TARGET_DIR)/usr/bin/aumix aumix-source: $(DL_DIR)/$(AUMIX_SOURCE) |