diff options
author | Keith Packard <keithp@keithp.com> | 2011-06-28 09:33:25 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-06-28 09:33:25 -0700 |
commit | 9d568450b1319e9057319ebb37e76003bcba447d (patch) | |
tree | a2914a4da410ad8ef36947439e3c38f10e67c737 | |
parent | f968f4ace9410d827fb6b68c4e38ea9516641309 (diff) |
Create sdksyms.dep in the right place at configure time
sdksyms moved from hw/xfree86/loader to hw/xfree86, so the
configure-time create of sdksyms.dep needs to reflect that
change. Otherwise, make might be confused by a missing file and (more
importantly to me) hw/xfree86/loader/sdksyms.dep will be left around
after 'make clean' causing 'make distcheck' to fail.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a53ab5038..67a7f1390 100644 --- a/configure.ac +++ b/configure.ac @@ -2144,7 +2144,7 @@ AC_SUBST([libdir]) AC_SUBST([exec_prefix]) AC_SUBST([prefix]) -AC_CONFIG_COMMANDS([sdksyms], [touch hw/xfree86/loader/sdksyms.dep]) +AC_CONFIG_COMMANDS([sdksyms], [touch hw/xfree86/sdksyms.dep]) AC_OUTPUT([ Makefile |