From 819013aadd72d2a98b1cbc76ffc0cee222a6f3d2 Mon Sep 17 00:00:00 2001 From: Michele Pittoni Date: Tue, 2 Feb 2016 16:23:18 +0100 Subject: [PATCH] Replace spaces with tabs in Makefile The build of the libtrace-tools-extra package failed with error: "missing separator (did you mean TAB instead of 8 spaces?). Stop" This commit fixes the issue by replacing the spaces with a tab. --- libtrace-tools-extra/Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/libtrace-tools-extra/Makefile b/libtrace-tools-extra/Makefile index bbec7ea..78c7a65 100644 --- a/libtrace-tools-extra/Makefile +++ b/libtrace-tools-extra/Makefile @@ -15,20 +15,20 @@ PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) include $(INCLUDE_DIR)/package.mk define Package/libtrace-tools-extra - SECTION:=net - CATEGORY:=Network - DEPENDS:=+libtrace +libtcptools - TITLE:=libtrace-tools-extra + SECTION:=net + CATEGORY:=Network + DEPENDS:=+libtrace +libtcptools + TITLE:=libtrace-tools-extra endef define Package/libtrace-tools-extra/description - Libtrace based tools for packet trace analysis. + Libtrace based tools for packet trace analysis. endef define Package/libtrace-tools-extra/install - $(INSTALL_DIR) $(1)/usr/bin - $(INSTALL_BIN) $(PKG_BUILD_DIR)/tracepktiv $(1)/usr/bin/ - $(INSTALL_BIN) $(PKG_BUILD_DIR)/tracertt $(1)/usr/bin/ + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/tracepktiv $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/tracertt $(1)/usr/bin/ endef $(eval $(call BuildPackage,libtrace-tools-extra))