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/python-sip | |
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/python-sip')
-rw-r--r-- | package/python-sip/python-sip.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/python-sip/python-sip.mk b/package/python-sip/python-sip.mk index 1d84e83517..1bba2690c1 100644 --- a/package/python-sip/python-sip.mk +++ b/package/python-sip/python-sip.mk @@ -46,7 +46,7 @@ define PYTHON_SIP_CONFIGURE_CMDS $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(HOST_DIR)/usr/bin/python configure.py \ --bindir $(TARGET_DIR)/usr/bin \ --destdir $(TARGET_DIR)/$(PYTHON_SIP_LIB_DIR) \ - --incdir $(STAGING_DIR)/$(PYTHON_SIP_INCLUDE_DIR) \ + --incdir $(STAGING_DIR)/$(PYTHON_SIP_INCLUDE_DIR) \ --sipdir $(TARGET_DIR)/usr/share/sip \ --sysroot $(STAGING_DIR)/usr \ --use-qmake && \ |