diff options
| author | Keith Packard <keithp@keithp.com> | 2011-07-06 17:49:01 -0700 |
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2011-07-06 17:49:01 -0700 |
| commit | 504ab7ab355652d5d01094c927089029596a0753 (patch) | |
| tree | d7ddf716ea8757db227d7acb0f209f900a66b12d /src/ao_product.c | |
| parent | 81cf2e833bedbc1ace8fd310e9e94bfb7673d428 (diff) | |
altos: product defines are always in ao_product.h
When all products were built in a single directory, each one had a
separate version of ao_product.h. Now that they all reside in
sub-directories, each directory has its own ao_product.h
This change is needed so that other modules in the system can use the
product defines; otherwise, ao_product.h was not built at the right time.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/ao_product.c')
| -rw-r--r-- | src/ao_product.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ao_product.c b/src/ao_product.c index bb42e92c..fb59580b 100644 --- a/src/ao_product.c +++ b/src/ao_product.c @@ -16,7 +16,7 @@ */ #include "ao.h" -#include PRODUCT_DEFS +#include "ao_product.h" /* Defines which mark this particular AltOS product */ |
