diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-09-05 13:30:21 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-09-05 13:30:21 +0200 |
| commit | 2b9f5fb6fd0f8b9120a491b8d185d9bc20f6262f (patch) | |
| tree | d2107d13182d35c73d98f2232c58efdbb6418bf7 /src | |
| parent | f252f2aea1e06c18379f31f2abdbb4bdbda5cf93 (diff) | |
[ UPD ] Update build tool string prefix.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'src')
| -rw-r--r-- | src/manifest_builder.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/manifest_builder.cxx b/src/manifest_builder.cxx index 394432f..a020782 100644 --- a/src/manifest_builder.cxx +++ b/src/manifest_builder.cxx @@ -1,6 +1,6 @@ // // main.cpp -// buildme +// btb // // Created by Amlal on 6/20/24. // @@ -92,7 +92,7 @@ bool ManifestBuilder::buildJson(int arg_sz, const char* arg_val) if (target.ends_with(".so") || target.ends_with(".dll")) { - std::cout << "buildme: error: can't open DLL/SO, it mayn't contain an entrypoint." << std::endl; + std::cout << "btb: error: can't open DLL/SO, it mayn't contain an entrypoint." << std::endl; return true; } else if (target.ends_with(".dll")) @@ -105,15 +105,15 @@ bool ManifestBuilder::buildJson(int arg_sz, const char* arg_val) ss.str()[1] == 'o' && ss.str()[2] == 'y' && ss.str()[3] == '!') - std::cout << "buildme: error: can't open PEF DLL, it mayn't contain an entrypoint." << std::endl; + std::cout << "btb: error: can't open PEF DLL, it mayn't contain an entrypoint." << std::endl; else if (ss.str()[0] == '!' && ss.str()[1] == 'y' && ss.str()[2] == 'o' && ss.str()[3] == 'J') - std::cout << "buildme: error: can't open FEP DLL, it mayn't contain an entrypoint." << std::endl; + std::cout << "btb: error: can't open FEP DLL, it mayn't contain an entrypoint." << std::endl; else if (ss.str()[0] == 'M' && ss.str()[1] == 'Z') - std::cout << "buildme: error: can't open MZ DLL, it mayn't contain an entrypoint." << std::endl; + std::cout << "btb: error: can't open MZ DLL, it mayn't contain an entrypoint." << std::endl; return true; } @@ -128,7 +128,7 @@ bool ManifestBuilder::buildJson(int arg_sz, const char* arg_val) } catch (std::runtime_error& err) { - std::cout << "buildme: error: " << err.what() << std::endl; + std::cout << "btb: error: " << err.what() << std::endl; perror("buildme"); return false; |
