diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2011-10-24 14:23:30 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-10-24 15:36:28 +0200 |
commit | 5889480ec61ecba3e6abe0d9cb70c1b7507a6ee5 (patch) | |
tree | 2e0cc9375c18c5170069bc5b33ec79c00dd7402a /package | |
parent | 0ca7b726683879f93032b348aba0759f0ef8b520 (diff) |
orc: add host support
Some packages use orc to generate C code at build time using orcc, so we
need to build orc for the host as well.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package')
-rw-r--r-- | package/orc/orc.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/orc/orc.mk b/package/orc/orc.mk index d4ff3e28f..97c80f29e 100644 --- a/package/orc/orc.mk +++ b/package/orc/orc.mk @@ -6,6 +6,7 @@ ORC_VERSION = 0.4.14 ORC_SITE = http://code.entropywave.com/download/orc/ ORC_INSTALL_STAGING = YES +ORC_DEPENDENCIES = host-orc define ORC_REMOVE_BUGREPORT rm -f $(TARGET_DIR)/usr/bin/orc-bugreport @@ -22,3 +23,4 @@ ORC_POST_INSTALL_TARGET_HOOKS += ORC_REMOVE_DEVFILES endif $(eval $(call AUTOTARGETS)) +$(eval $(call AUTOTARGETS,host)) |