summaryrefslogtreecommitdiffstats
path: root/meta-selftest/recipes-test/fortran/fortran-helloworld.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-selftest/recipes-test/fortran/fortran-helloworld.bb')
-rw-r--r--meta-selftest/recipes-test/fortran/fortran-helloworld.bb4
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
7SRC_URI = "file://hello.f95" 7SRC_URI = "file://hello.f95"
8 8
9S = "${UNPACKDIR}"
10
9# These set flags that Fortran doesn't support 11# These set flags that Fortran doesn't support
10SECURITY_CFLAGS = "" 12SECURITY_CFLAGS = ""
11SECURITY_LDFLAGS = "" 13SECURITY_LDFLAGS = ""
12 14
13do_compile() { 15do_compile() {
14 ${FC} ${LDFLAGS} ${WORKDIR}/hello.f95 -o ${B}/fortran-hello 16 ${FC} ${LDFLAGS} hello.f95 -o ${B}/fortran-hello
15} 17}
16 18
17do_install() { 19do_install() {