diff options
author | Brad Richardson <brichardson@structint.com> | 2020-07-08 11:24:41 -0700 |
---|---|---|
committer | Brad Richardson <brichardson@structint.com> | 2020-07-08 11:24:41 -0700 |
commit | b86c74bef761ec48ff17cf043a26b11b9bf3954b (patch) | |
tree | 593bd73ae01bfbc06fe485ce0e36aa15d61390a5 /test/example_packages/hello_complex/apps | |
parent | 572bd33f918f3d5ce48ee482cf90ce49c6888199 (diff) | |
download | fpm-b86c74bef761ec48ff17cf043a26b11b9bf3954b.tar.gz fpm-b86c74bef761ec48ff17cf043a26b11b9bf3954b.zip |
Fix bug with case in program source file name.
Diffstat (limited to 'test/example_packages/hello_complex/apps')
-rw-r--r-- | test/example_packages/hello_complex/apps/say_hello/say_Hello.f90 (renamed from test/example_packages/hello_complex/apps/say_hello/say_hello.f90) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/example_packages/hello_complex/apps/say_hello/say_hello.f90 b/test/example_packages/hello_complex/apps/say_hello/say_Hello.f90 index cc648f2..cf4a742 100644 --- a/test/example_packages/hello_complex/apps/say_hello/say_hello.f90 +++ b/test/example_packages/hello_complex/apps/say_hello/say_Hello.f90 @@ -1,7 +1,7 @@ -program say_hello +program say_Hello use greet_m, only: make_greeting implicit none print *, make_greeting("World") -end program say_hello +end program say_Hello |