summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2010-06-30 14:21:40 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2010-11-15 13:27:59 +1000
commita4d82b0c99bcf8510f63a955f3e6092ae1682b76 (patch)
tree4b67d4e0765360baf0c92a327501f00e73cdf3e3
parent428c83efc5771723d25675252a94d2723b2a070c (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>
-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) < $< > $@