librabbitmq/backport-0001-Fix-instructions-for-default-build.patch
mengwenhua 9f9fca9a40 Fix instructions for default build
Signed-off-by: mengwenhua <mengwenhua@xfusion.com>
2023-01-06 10:52:26 +08:00

27 lines
766 B
Diff

From 1fa5f63e6ba34d6d29fea7db62fde1b2bf96d914 Mon Sep 17 00:00:00 2001
From: Ross Cousens <rcousens@users.noreply.github.com>
Date: Mon, 16 Jul 2018 10:18:04 +1000
Subject: [PATCH] Fix instructions for default build
The order of arguments were incorrect, --build must directly specify the directory afterwards.
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 5255315..b7776c6 100644
--- a/README.md
+++ b/README.md
@@ -52,7 +52,7 @@ systems are:
mkdir build && cd build
cmake ..
- cmake --build [--config Release] .
+ cmake --build . [--config Release]
The --config Release flag should be used in multi-configuration generators e.g.,
Visual Studio or XCode.
--
2.37.3.windows.1