summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJ.T. Conklin <johntconklin@users.noreply.github.com>2004-08-05 21:55:23 +0000
committerJ.T. Conklin <johntconklin@users.noreply.github.com>2004-08-05 21:55:23 +0000
commitb4247bdf9b899ad9b5216ff00c0cdb49d9813a3f (patch)
tree76587814b44bb1e1bfa170dcf19565ddc0538318
parent43e4787b7139ec148e110b3ce4c5da34a8effbe8 (diff)
downloadMPC-b4247bdf9b899ad9b5216ff00c0cdb49d9813a3f.tar.gz
ChangeLogTag: Thu Aug 5 14:57:19 2004 J.T. Conklin <jtc@acorntoolworks.com>
-rw-r--r--ChangeLog7
-rw-r--r--templates/automake.mpd2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 5e6fff48..3eee29a7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Thu Aug 5 14:57:19 2004 J.T. Conklin <jtc@acorntoolworks.com>
+
+ * templates/automake.mpd:
+ Use $(srcdir)/<%custom_type->input_file%> instead of $< so
+ resulting makefile will work on systems where make doesn't
+ support VPATH.
+
Thu Aug 5 11:14:12 2004 J.T. Conklin <jtc@acorntoolworks.com>
* templates/automake.mpd:
diff --git a/templates/automake.mpd b/templates/automake.mpd
index 96ea4ad8..f73f66b6 100644
--- a/templates/automake.mpd
+++ b/templates/automake.mpd
@@ -17,7 +17,7 @@ CLEANFILES += \
<%endfor%>
<%foreach(custom_type->input_file->output_files)%><%if(flag_overrides(custom_type->input_file, gendir))%><%flag_overrides(custom_type->input_file, gendir)%>\<%basename(custom_type->input_file->output_file)%><%else%><%custom_type->input_file->output_file%><%endif%><%fornotlast(" ")%><%endfor%>: <%custom_type->input_file%>
- <%custom_type->command%> <%if(flag_overrides(custom_type->input_file, commandflags))%><%flag_overrides(custom_type->input_file, commandflags)%><%else%><%custom_type->commandflags%><%endif%> $<<%if(custom_type->output_option)%><%custom_type->output_option%> $@<%endif%>
+ <%custom_type->command%> <%if(flag_overrides(custom_type->input_file, commandflags))%><%flag_overrides(custom_type->input_file, commandflags)%><%else%><%custom_type->commandflags%><%endif%> $(srcdir)/<%custom_type->input_file%><%if(custom_type->output_option)%><%custom_type->output_option%> $@<%endif%>
<%if(custom_type->postcommand)%>
<%foreach(custom_type->input_file->output_files)%>
<%custom_type->postcommand()%>