mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-21 23:38:49 -05:00
Fix thinko in configure.ac CFLAGS empty checking
Since commit d2669b47
, CFLAGS specified on the command line haven't been
respected at all, resulting in no optimization being applied to builds.
This exposed one warning flag issue in some new code, which is also
fixed here.
Signed-off-by: Dan McGee <dan@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
parent
b57ada336b
commit
1d0ab50c05
@ -67,7 +67,7 @@ LIB_VERSION=`expr lib_current - lib_age`.lib_age.lib_revision
|
||||
LIB_VERSION_INFO="lib_current:lib_revision:lib_age"
|
||||
|
||||
# Respect empty CFLAGS during compiler tests
|
||||
if test "x$CFLAGS" != "x"; then
|
||||
if test "x$CFLAGS" = "x"; then
|
||||
CFLAGS=""
|
||||
fi
|
||||
|
||||
|
@ -134,7 +134,7 @@ static int query_fileowner(alpm_list_t *targets)
|
||||
struct stat buf;
|
||||
alpm_list_t *i;
|
||||
size_t len;
|
||||
int found = 0;
|
||||
unsigned int found = 0;
|
||||
|
||||
if((filename = strdup(t->data)) == NULL) {
|
||||
goto targcleanup;
|
||||
|
Loading…
Reference in New Issue
Block a user