-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Add patch to add .Makefile.inc to fastjet-contrib
* As each contribution in fastjet-contrib has their own Makefile which defines CXX and CXXFLAGS it is necessary to use a globally used .Makefile.inc to change these everywhere. For fastjet to be able to control the values from the environment that fastjet is being built in, use a .Makefile.inc patch to undefine CXX and CXXFLAGS for Make. This allows for the environment varaibles to be picked up. * Remove patch_makefilein.txt as patch_makefileinc.txt supreceeds it.
- Loading branch information
1 parent
1897631
commit f7df4b5
Showing
4 changed files
with
23 additions
and
17 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
This file was deleted.
Oops, something went wrong.
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,21 @@ | ||
From 8044976424439224824e4dd265380bb2f750be1a Mon Sep 17 00:00:00 2001 | ||
From: Matthew Feickert <[email protected]> | ||
Date: Fri, 16 Feb 2024 18:00:36 -0600 | ||
Subject: [PATCH] Add .Makefile.inc for fastjet | ||
|
||
--- | ||
.Makefile.inc | 3 +++ | ||
1 file changed, 3 insertions(+) | ||
create mode 100644 .Makefile.inc | ||
|
||
diff --git a/.Makefile.inc b/.Makefile.inc | ||
new file mode 100644 | ||
index 0000000..595b3aa | ||
--- /dev/null | ||
+++ b/.Makefile.inc | ||
@@ -0,0 +1,3 @@ | ||
+# undefine variables defined in Makefile.in and each contrib Makefile | ||
+undefine CXX=g++ | ||
+undefine CXXFLAGS=-O2 -Wall -g | ||
-- | ||
2.34.1 |
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