summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal <amlalelmahrouss@icloud.com>2024-12-21 09:29:39 +0100
committerAmlal <amlalelmahrouss@icloud.com>2024-12-21 09:29:39 +0100
commiteef2a4af10d8e4604ccb0f8f211b4120c1ebcb7f (patch)
treea9d61be8952b168cedd8d945e16d7e45a7fdf182
parentc51737aad748d7ee00231bb58f61aefe04e480fb (diff)
IMPL: Fix Makefile, don't mention missing libbtb.
Signed-off-by: Amlal <amlalelmahrouss@icloud.com>
-rw-r--r--cli/ToolCLI.cc (renamed from cli/ManifestCLI.cc)0
-rw-r--r--makefile2
-rw-r--r--src/JSONManifestBuilder.cc2
3 files changed, 2 insertions, 2 deletions
diff --git a/cli/ManifestCLI.cc b/cli/ToolCLI.cc
index 01ac73e..01ac73e 100644
--- a/cli/ManifestCLI.cc
+++ b/cli/ToolCLI.cc
diff --git a/makefile b/makefile
index adf380b..80f4277 100644
--- a/makefile
+++ b/makefile
@@ -1,7 +1,7 @@
.PHONY: build-btb
build-btb:
- sudo g++ -I./BTBKit -I./vendor $(wildcard cli/*.cc) $(wildcard src/*.cc) -std=c++20 -L/usr/local -lbtb -o btb
+ sudo g++ -I./BTBKit -I./vendor $(wildcard cli/*.cc) $(wildcard src/*.cc) -std=c++20 -o btb
sudo cp btb /usr/local/bin
.PHONY: build-btb-windows
diff --git a/src/JSONManifestBuilder.cc b/src/JSONManifestBuilder.cc
index 358f990..b16ae82 100644
--- a/src/JSONManifestBuilder.cc
+++ b/src/JSONManifestBuilder.cc
@@ -105,7 +105,7 @@ bool JSONManifestBuilder::buildTarget(int arg_sz, const char* arg_val, const boo
if (ret_exec > 0)
{
- std::cout << "btb: error: exec exit with code: " << ret_exec << "." << std::endl;
+ std::cout << "btb: error: exec exit with code: " << ret_exec << "" << std::endl;
return false;
}