forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sys-devel/make: default CXX to c++ instead of g++, #589894
Closes: gentoo#1982 Package-Manager: portage-2.2.28 Reviewed-by: Anthony G. Basile <[email protected]>
- Loading branch information
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/default.c b/default.c | ||
index 3d865c7..e8b3ed6 100644 | ||
--- a/default.c | ||
+++ b/default.c | ||
@@ -530,7 +530,7 @@ static const char *default_variables[] = | ||
"OBJC", "gcc", | ||
#else | ||
"CC", "cc", | ||
- "CXX", "g++", | ||
+ "CXX", "c++", | ||
"OBJC", "cc", | ||
#endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters