[svn-r2661] Purpose:

Bug Fix
Description:
	Wasn't finding the Dependencies file when doing a make.
Solution:
	Modified the path to the Dependencies file by prepending a
	`$(srcdir)/' to it.
Platforms tested:
	Modi4
This commit is contained in:
Bill Wendling 2000-10-11 10:45:55 -05:00
parent 076301d28d
commit dde028f9cf
5 changed files with 5 additions and 5 deletions

View File

@ -180,6 +180,6 @@ maintainer-clean: distclean
## source files and the header files.
##-----------------------------------------------------------------------------
.PHONY: dep depend
dep depend: Dependencies
dep depend: $(srcdir)/Dependencies
@DEPEND@

View File

@ -21,7 +21,7 @@
## tilde to the file name.
##
.PRECIOUS: Dependencies
Dependencies: .depend
$(srcdir)/Dependencies: .depend
@if test "$(srcdir)" != "."; then \
echo '## This file is machine generated on GNU systems.' \
>$@; \

View File

@ -8,4 +8,4 @@
## `.distdep' file from the source tree. This file was automatically generated
## on some system that satisfies the above requirements.
-include Dependencies
-include $(srcdir)/Dependencies

View File

@ -4,4 +4,4 @@
## `.distdep' file from the source tree. This file was automatically generated
## on some system that satisfies the above requirements.
.include <Dependencies>
.include <$(srcdir)/Dependencies>

View File

@ -4,4 +4,4 @@
## `.distdep' file from the source tree. This file was automatically generated
## on some system that satisfies the above requirements.
include Dependencies
include $(srcdir)/Dependencies