diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2011-03-15 11:55:11 +0000 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2011-03-15 11:55:11 +0000 |
commit | f8ef438aba81485ff4402ff7f8cb4becf437b073 (patch) | |
tree | 3ac6c2d03ea5d1d7b3f16502eb420c6a0c29af43 | |
parent | ad5fefcc7a0a0beb1c02270d9f28c8b28da61199 (diff) |
Fix for non-srcdir builds
Fix commit ad5fefcc7a0a0beb1c02270d9f28c8b28da61199 for non-srcdir builds
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 56c788e..70de4f1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -27,7 +27,7 @@ EXTRA_DIST = $(bin_SCRIPTS:=.in) DIR_SUBSTS = -e 's|@bindir[@]|$(bindir)|g' mkfontdir: mkfontdir.in - $(AM_V_GEN)$(SED) $(DIR_SUBSTS) < mkfontdir.in > $@ + $(AM_V_GEN)$(SED) $(DIR_SUBSTS) < $(srcdir)/mkfontdir.in > $@ MAINTAINERCLEANFILES = ChangeLog INSTALL |