diff options
author | Adam Duskett <Aduskett@gmail.com> | 2017-04-21 11:24:48 -0400 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-04-22 15:57:23 +0200 |
commit | e2a782241582e9e7725869f35dfbe2d45cf35a3a (patch) | |
tree | a0eb11a12628e64783c398caf6d60da7ce37a87f /package/python3/python3.mk | |
parent | 42ec2bd4a4ec7337c34772559024fcc9e135c898 (diff) | |
download | buildroot-e2a782241582e9e7725869f35dfbe2d45cf35a3a.tar.gz buildroot-e2a782241582e9e7725869f35dfbe2d45cf35a3a.zip |
package makefiles: clean up backslash spacing.
The check-package script when ran gave warnings on only using
one space before backslashes on all of these makefiles.
This patch cleans up all warnings related to the one space before
backslashes rule in the make files in the package directory.
Signed-off-by: Adam Duskett <aduskett@codeblue.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/python3/python3.mk')
-rw-r--r-- | package/python3/python3.mk | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/package/python3/python3.mk b/package/python3/python3.mk index 2532dee489..60a15f89e9 100644 --- a/package/python3/python3.mk +++ b/package/python3/python3.mk @@ -24,19 +24,19 @@ PYTHON3_LIBTOOL_PATCH = NO # installed in $(HOST_DIR), as it is needed when cross-compiling # third-party Python modules. -HOST_PYTHON3_CONF_OPTS += \ - --without-ensurepip \ - --without-cxx-main \ - --disable-sqlite3 \ - --disable-tk \ - --with-expat=system \ - --disable-curses \ - --disable-codecs-cjk \ - --disable-nis \ - --enable-unicodedata \ - --disable-test-modules \ - --disable-idle3 \ - --disable-ossaudiodev \ +HOST_PYTHON3_CONF_OPTS += \ + --without-ensurepip \ + --without-cxx-main \ + --disable-sqlite3 \ + --disable-tk \ + --with-expat=system \ + --disable-curses \ + --disable-codecs-cjk \ + --disable-nis \ + --enable-unicodedata \ + --disable-test-modules \ + --disable-idle3 \ + --disable-ossaudiodev \ --disable-openssl # Make sure that LD_LIBRARY_PATH overrides -rpath. @@ -151,15 +151,15 @@ PYTHON3_CONF_ENV += ac_cv_func_wcsftime=no endif PYTHON3_CONF_OPTS += \ - --without-ensurepip \ - --without-cxx-main \ - --with-system-ffi \ - --disable-pydoc \ - --disable-test-modules \ - --disable-lib2to3 \ - --disable-tk \ - --disable-nis \ - --disable-idle3 \ + --without-ensurepip \ + --without-cxx-main \ + --with-system-ffi \ + --disable-pydoc \ + --disable-test-modules \ + --disable-lib2to3 \ + --disable-tk \ + --disable-nis \ + --disable-idle3 \ --disable-pyc-build # Python builds two tools to generate code: 'pgen' and |