diff options
Diffstat (limited to 'meta-selftest/recipes-test/fortran/fortran-helloworld.bb')
-rw-r--r-- | meta-selftest/recipes-test/fortran/fortran-helloworld.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-selftest/recipes-test/fortran/fortran-helloworld.bb b/meta-selftest/recipes-test/fortran/fortran-helloworld.bb index 3a46404477..240ed473cc 100644 --- a/meta-selftest/recipes-test/fortran/fortran-helloworld.bb +++ b/meta-selftest/recipes-test/fortran/fortran-helloworld.bb | |||
@@ -6,12 +6,14 @@ DEPENDS = "libgfortran" | |||
6 | 6 | ||
7 | SRC_URI = "file://hello.f95" | 7 | SRC_URI = "file://hello.f95" |
8 | 8 | ||
9 | S = "${UNPACKDIR}" | ||
10 | |||
9 | # These set flags that Fortran doesn't support | 11 | # These set flags that Fortran doesn't support |
10 | SECURITY_CFLAGS = "" | 12 | SECURITY_CFLAGS = "" |
11 | SECURITY_LDFLAGS = "" | 13 | SECURITY_LDFLAGS = "" |
12 | 14 | ||
13 | do_compile() { | 15 | do_compile() { |
14 | ${FC} ${LDFLAGS} ${WORKDIR}/hello.f95 -o ${B}/fortran-hello | 16 | ${FC} ${LDFLAGS} hello.f95 -o ${B}/fortran-hello |
15 | } | 17 | } |
16 | 18 | ||
17 | do_install() { | 19 | do_install() { |