1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-11-25 22:12:03 +02:00

Add CPPFLAGS to compile rules.

This should silence the last of the Debian package warnings.
This commit is contained in:
David Steele
2019-06-01 09:28:31 -04:00
parent 388ba0458c
commit 12bca3c43e
2 changed files with 114 additions and 114 deletions

View File

@@ -231,8 +231,8 @@ sub buildMakefileObjectCompile
$strMakefile .=
(defined($strMakefile) ? "\n" : '') .
"${strObject}: ${strDepend}\n" .
"\t\$(CC) \$(CFLAGS) \$(CMAKE)" . (defined($rhOption->{$strObject}) ? ' ' . $rhOption->{$strObject} : '') .
" -c ${strFile} -o ${strObject}\n";
"\t\$(CC) \$(CPPFLAGS) \$(CFLAGS) \$(CMAKE)" .
(defined($rhOption->{$strObject}) ? ' ' . $rhOption->{$strObject} : '') . " -c ${strFile} -o ${strObject}\n";
}
}