summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gcc/libgfortran.inc
diff options
context:
space:
mode:
authorPeter A. Bigot <pab@pabigot.com>2014-08-14 14:05:51 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-08-15 18:21:49 +0100
commit6d78f392f524944a1e32e14e4b1a7e48422a3ece (patch)
tree2c0c89f64d39a113b157200755aa7c865df6c6a3 /meta/recipes-devtools/gcc/libgfortran.inc
parent2783ee732a4e1c30ec143509fdf8cce8657e67b7 (diff)
downloadpoky-6d78f392f524944a1e32e14e4b1a7e48422a3ece.tar.gz
gcc: recipe whitespace changes
Consistent use of whitespace in multi-line assignment, with special focus on OECONF modifications. Quotes on separate lines, four-space indentation, one value per line. (From OE-Core rev: d971db8b2259e4c35b871cccf130fba193849560) Signed-off-by: Peter A. Bigot <pab@pabigot.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/libgfortran.inc')
-rw-r--r--meta/recipes-devtools/gcc/libgfortran.inc29
1 files changed, 15 insertions, 14 deletions
diff --git a/meta/recipes-devtools/gcc/libgfortran.inc b/meta/recipes-devtools/gcc/libgfortran.inc
index 7bf412134b..cf7942f41d 100644
--- a/meta/recipes-devtools/gcc/libgfortran.inc
+++ b/meta/recipes-devtools/gcc/libgfortran.inc
@@ -1,8 +1,9 @@
1require gcc-configure-common.inc 1require gcc-configure-common.inc
2 2
3EXTRA_OECONF_PATHS = " \ 3EXTRA_OECONF_PATHS = "\
4 --with-sysroot=${STAGING_DIR_TARGET} \ 4 --with-sysroot=${STAGING_DIR_TARGET} \
5 --with-build-sysroot=${STAGING_DIR_TARGET}" 5 --with-build-sysroot=${STAGING_DIR_TARGET} \
6"
6 7
7do_configure () { 8do_configure () {
8 mtarget=`echo ${TARGET_SYS} | sed -e s#-${SDKPKGSUFFIX}##` 9 mtarget=`echo ${TARGET_SYS} | sed -e s#-${SDKPKGSUFFIX}##`
@@ -45,20 +46,20 @@ DEPENDS = "gcc-runtime"
45BBCLASSEXTEND = "nativesdk" 46BBCLASSEXTEND = "nativesdk"
46 47
47PACKAGES = "\ 48PACKAGES = "\
48 ${PN}-dbg \ 49 ${PN}-dbg \
49 libgfortran \ 50 libgfortran \
50 libgfortran-dev \ 51 libgfortran-dev \
51 libgfortran-staticdev \ 52 libgfortran-staticdev \
52" 53"
53FILES_${PN} = "${libdir}/libgfortran.so.*" 54FILES_${PN} = "${libdir}/libgfortran.so.*"
54FILES_${PN}-dev = " \ 55FILES_${PN}-dev = "\
55 ${libdir}/libgfortran*.so \ 56 ${libdir}/libgfortran*.so \
56 ${libdir}/libgfortran.spec \ 57 ${libdir}/libgfortran.spec \
57 ${libdir}/libgfortran.la \ 58 ${libdir}/libgfortran.la \
58 ${libdir}/gcc/${TARGET_SYS}/${BINV}/libgfortranbegin.* \ 59 ${libdir}/gcc/${TARGET_SYS}/${BINV}/libgfortranbegin.* \
59 ${libdir}/gcc/${TARGET_SYS}/${BINV}/libcaf_single*" 60 ${libdir}/gcc/${TARGET_SYS}/${BINV}/libcaf_single* \
60FILES_${PN}-staticdev = " \ 61"
61 ${libdir}/libgfortran.a" 62FILES_${PN}-staticdev = "${libdir}/libgfortran.a"
62 63
63INSANE_SKIP_${MLPREFIX}libgfortran-dev = "staticdev" 64INSANE_SKIP_${MLPREFIX}libgfortran-dev = "staticdev"
64 65