summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2010-06-30 14:21:40 +1000
committerAaron Plattner <aplattner@nvidia.com>2011-04-12 15:47:20 -0700
commitd46ad8984a11c6ebe7633e0efcc59a700d64105d (patch)
tree72018bd1da7462565d9e50f3cef67931b6161c41
parent712c001afd71c520b567d7292adc3a2af2513c81 (diff)
Fix one more out-of-tree build error.
xts5/bin/ may not exist when we're trying to put xts-config into it. Create it. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Aaron Plattner <aplattner@nvidia.com> Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
-rw-r--r--xts5/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/xts5/Makefile.am b/xts5/Makefile.am
index b294ac6b..746c6344 100644
--- a/xts5/Makefile.am
+++ b/xts5/Makefile.am
@@ -23,10 +23,10 @@ EDIT = $(SED) -e 's,%bindir%,$(bindir),g' \
-e 's,%libexecdir%,$(libexecdir),g' \
-e 's,%DEFAULT_TET_ROOT%,$(DEFAULT_TET_ROOT),g' \
-e 's,%PACKAGE_VERSION%,$(PACKAGE_VERSION),g'
-bin/xts-config: bin/xts-config.in
+bin/xts-config: $(srcdir)/bin/xts-config.in
$(AM_V_at)$(MKDIR_P) bin
$(AM_V_GEN)$(EDIT) < $< > $@
-bin/xts-run: bin/xts-run.in
+bin/xts-run: $(srcdir)/bin/xts-run.in
$(AM_V_at)$(MKDIR_P) bin
$(AM_V_GEN)$(EDIT) < $< > $@