[Xfce4-commits] [xfce/xfce4-dev-tools] 01/01: Fix out of source building (bug #10899)
noreply at xfce.org
noreply at xfce.org
Sun Jul 27 17:12:24 CEST 2014
This is an automated email from the git hooks/post-receive script.
jannis pushed a commit to branch master
in repository xfce/xfce4-dev-tools.
commit e01becaeafa9c2373fa08ef9bdbb181e5af05718
Author: Jannis Pohlmann <jannis at xfce.org>
Date: Sun Jul 27 17:03:42 2014 +0200
Fix out of source building (bug #10899)
Depending on files generated during build via $(srcdir) breaks builds
that take place outside the source directory. This commit fixes one such
mistake in scripts/Makefile.am that refers to $(srcdir)/xdt-autogen.in.
---
scripts/Makefile.am | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/scripts/Makefile.am b/scripts/Makefile.am
index f2f0600..ddc890c 100644
--- a/scripts/Makefile.am
+++ b/scripts/Makefile.am
@@ -1,6 +1,6 @@
# $Id$
#
-# Copyright (c) 2002-2005
+# Copyright (c) 2002-2014
# The Xfce development team. All rights reserved.
#
# Written for Xfce by Benedikt Meurer <benny at xfce.org>.
@@ -8,9 +8,9 @@
bin_SCRIPTS = \
xdt-autogen \
- xdt-commit
+ xdt-commit
-xdt-autogen: Makefile $(srcdir)/xdt-autogen.in
+xdt-autogen: Makefile xdt-autogen.in
rm -f xdt-autogen xdt-autogen.gen
sed -e 's,\@DATADIR\@,$(datadir),g' \
xdt-autogen.in \
@@ -20,7 +20,7 @@ xdt-autogen: Makefile $(srcdir)/xdt-autogen.in
CLEANFILES = \
xdt-autogen
-DISTCLEANFILES = \
+DISTCLEANFILES = \
xdt-autogen.in
EXTRA_DIST = \
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list