forked from johnath/beep
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix builds when make called with CFLAGS_*
When running make CFLAGS_gcc=-DFOO the command line value of CFLAGS_gcc overrides all definitions from the Makefile made with normal = := += operators. However, using the "override" statement, the Makefile can still append to the value given on the command line. We need that for compiling beep-log.c with secure_getenv().
- Loading branch information
Showing
2 changed files
with
4 additions
and
3 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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
1.4.x | ||
----- | ||
- Let user define CFLAGS_* during "make" time while internal appends still work | ||
|
||
1.4.5 | ||
----- | ||
|
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