Skip to content

Commit

Permalink
path: prepend paths rather than append paths when processing --with-p…
Browse files Browse the repository at this point in the history
…ath arguments
  • Loading branch information
kaniini committed Aug 4, 2023
1 parent a4eb097 commit 384ade5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libpkgconf/path.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ pkgconf_path_add(const char *text, pkgconf_list_t *dirlist, bool filter)
}
#endif

pkgconf_node_insert_tail(&node->lnode, node, dirlist);
pkgconf_node_insert(&node->lnode, node, dirlist);
}

/*
Expand Down

0 comments on commit 384ade5

Please sign in to comment.