aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 5 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index b15b845..942a7d9 100644
--- a/Makefile
+++ b/Makefile
@@ -75,14 +75,13 @@ build-package-hyperscan:
build-package:
ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
@mkdir -p $(BR)/build-package/; cd $(BR)/build-package/;\
- $(cmake) -DCMAKE_BUILD_TYPE=ReleaseĀ \
- -DCMAKE_INSTALL_PREFIX:PATH=/usr $(WS_ROOT)/;\
- make package -j$(nproc);
+ $(cmake) -DCMAKE_INSTALL_PREFIX=/usr $(WS_ROOT)/;
+ make package -j$(nproc);
else ifeq ($(OS_ID),centos)
@mkdir -p $(BR)/build-package/; cd $(BR)/build-package/;\
- $(cmake) -DCMAKE_BUILD_TYPE=Release -DCMKAE_INSTALL_LIBDIR=lib\
- -DCMAKE_INSTALL_PREFIX:PATH=/usr $(WS_ROOT)/;\
- make package -j$(nproc);
+ $(cmake) -DCMAKE_BUILD_TYPE=Release -DCMKAE_INSTALL_LIBDIR=lib\
+ -DCMAKE_INSTALL_PREFIX=/usr $(WS_ROOT)/;
+ make package -j$(nproc);
endif
@# NEW INSTRUCTIONS TO BUILD-PACKAGE MUST BE DECLARED ON A NEW LINE WITH
@# '@' NOT WITH ';' ELSE BUILD-PACKAGE WILL NOT RETURN THE CORRECT