diff options
author | Peter A. Bigot <pab@pabigot.com> | 2014-08-14 14:05:51 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-15 18:19:51 +0100 |
commit | d971db8b2259e4c35b871cccf130fba193849560 (patch) | |
tree | 23ede4abc2e2e33bae1c660df07d9adcc74d03a2 /meta/recipes-devtools/gcc/gcc-cross-initial.inc | |
parent | 6fa356c6a808a4876e23722ab86b80a4c6bd072d (diff) | |
download | openembedded-core-d971db8b2259e4c35b871cccf130fba193849560.tar.gz openembedded-core-d971db8b2259e4c35b871cccf130fba193849560.tar.bz2 openembedded-core-d971db8b2259e4c35b871cccf130fba193849560.zip |
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.
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/gcc-cross-initial.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-cross-initial.inc | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-cross-initial.inc b/meta/recipes-devtools/gcc/gcc-cross-initial.inc index 23a6d4beb4..64196ee106 100644 --- a/meta/recipes-devtools/gcc/gcc-cross-initial.inc +++ b/meta/recipes-devtools/gcc/gcc-cross-initial.inc @@ -11,22 +11,24 @@ CROSS_TARGET_SYS_DIR_append = ".${PN}" # This is intended to be a -very- basic config # sysroot is needed in case we use libc-initial -EXTRA_OECONF = "--with-newlib \ - --without-headers \ - --disable-shared \ - --disable-threads \ - --disable-multilib \ - --disable-__cxa_atexit \ - --enable-languages=c \ - ${OPTSPACE} \ - --program-prefix=${TARGET_PREFIX} \ - --with-sysroot=${STAGING_DIR_TARGET} \ - --with-build-sysroot=${GCCCROSS_BUILDSYSROOT} \ - ${EXTRA_OECONF_INITIAL} \ - ${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', '--with-ld=${STAGING_BINDIR_TOOLCHAIN}/${TARGET_PREFIX}ld.bfd', '', d)} \ - ${EXTRA_OECONF_FPU}" +EXTRA_OECONF = "\ + --with-newlib \ + --without-headers \ + --disable-shared \ + --disable-threads \ + --disable-multilib \ + --disable-__cxa_atexit \ + --enable-languages=c \ + ${OPTSPACE} \ + --program-prefix=${TARGET_PREFIX} \ + --with-sysroot=${STAGING_DIR_TARGET} \ + --with-build-sysroot=${GCCCROSS_BUILDSYSROOT} \ + ${EXTRA_OECONF_INITIAL} \ + ${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', '--with-ld=${STAGING_BINDIR_TOOLCHAIN}/${TARGET_PREFIX}ld.bfd', '', d)} \ + ${EXTRA_OECONF_FPU} \ +" -EXTRA_OECONF += " --with-native-system-header-dir=${SYSTEMHEADERS} " +EXTRA_OECONF += "--with-native-system-header-dir=${SYSTEMHEADERS}" GCCCROSS_BUILDSYSROOT = "${B}/tmpsysroot" |