diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-03-11 14:10:19 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-03-11 14:10:22 -0800 |
commit | ad5fefcc7a0a0beb1c02270d9f28c8b28da61199 (patch) | |
tree | b5071c4558af0ffb53ac1652a8f48b463f87562b | |
parent | 7f9922eac028518fa9f06aaf06c1bd6779b1e4c7 (diff) |
Make Makefile.am compatible with Solaris make
Solaris make won't substitute $< in explicit rules, only implicit ones
Signed-off-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 a98f2c8..56c788e 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) < $< > $@ + $(AM_V_GEN)$(SED) $(DIR_SUBSTS) < mkfontdir.in > $@ MAINTAINERCLEANFILES = ChangeLog INSTALL |