diff options
author | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-18 10:58:06 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-18 10:58:06 +0200 |
commit | 27043c7a2536b9d1c8770b8c1c36b53a98efac0c (patch) | |
tree | bde2a42d8a10ed68005869c7ddf62a1973f1016d | |
parent | da24b31f93dc3e7ac91a6d764ce649fbce1115c2 (diff) | |
download | buildroot-27043c7a2536b9d1c8770b8c1c36b53a98efac0c.tar.gz buildroot-27043c7a2536b9d1c8770b8c1c36b53a98efac0c.zip |
nmap: fix check-package warning
Fixes:
package/nmap/nmap.mk:88: expected indent with tabs
93 lines processed
1 warnings generated
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/nmap/nmap.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/nmap/nmap.mk b/package/nmap/nmap.mk index 391215dbf4..1c89b5424e 100644 --- a/package/nmap/nmap.mk +++ b/package/nmap/nmap.mk @@ -85,7 +85,7 @@ endif # Add a symlink to "nc" if none of the competing netcats is selected ifeq ($(BR2_PACKAGE_NMAP_NCAT):$(BR2_PACKAGE_NETCAT)$(BR2_PACKAGE_NETCAT_OPENBSD),y:) define NMAP_INSTALL_NCAT_SYMLINK - ln -fs ncat $(TARGET_DIR)/usr/bin/nc + ln -fs ncat $(TARGET_DIR)/usr/bin/nc endef NMAP_POST_INSTALL_TARGET_HOOKS += NMAP_INSTALL_NCAT_SYMLINK endif |