From dde028f9cf313afabdd21978167236c0ed20984d Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Wed, 11 Oct 2000 10:45:55 -0500 Subject: [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 --- fortran/config/conclude.in | 2 +- fortran/config/depend1.in | 2 +- fortran/config/depend2.in | 2 +- fortran/config/depend3.in | 2 +- fortran/config/depend4.in | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/fortran/config/conclude.in b/fortran/config/conclude.in index 2f3c11e..3629ad8 100644 --- a/fortran/config/conclude.in +++ b/fortran/config/conclude.in @@ -180,6 +180,6 @@ maintainer-clean: distclean ## source files and the header files. ##----------------------------------------------------------------------------- .PHONY: dep depend -dep depend: Dependencies +dep depend: $(srcdir)/Dependencies @DEPEND@ diff --git a/fortran/config/depend1.in b/fortran/config/depend1.in index 4a24846..bde94ed 100644 --- a/fortran/config/depend1.in +++ b/fortran/config/depend1.in @@ -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.' \ >$@; \ diff --git a/fortran/config/depend2.in b/fortran/config/depend2.in index ae49989..f67914f 100644 --- a/fortran/config/depend2.in +++ b/fortran/config/depend2.in @@ -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 diff --git a/fortran/config/depend3.in b/fortran/config/depend3.in index 26056d2..e856bc5 100644 --- a/fortran/config/depend3.in +++ b/fortran/config/depend3.in @@ -4,4 +4,4 @@ ## `.distdep' file from the source tree. This file was automatically generated ## on some system that satisfies the above requirements. -.include +.include <$(srcdir)/Dependencies> diff --git a/fortran/config/depend4.in b/fortran/config/depend4.in index 84e0f53..b0324d9 100644 --- a/fortran/config/depend4.in +++ b/fortran/config/depend4.in @@ -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 -- cgit v0.12