Skip to content

Commit

Permalink
Update to current optdepend handling
Browse files Browse the repository at this point in the history
  • Loading branch information
schuay committed Aug 29, 2013
1 parent 547dfc4 commit e9ac8b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/package.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ Package::Package(alpm_pkg_t *pkg, alpm_db_t *localdb)

_licenses = list2str(alpm_pkg_get_licenses(_pkg), " ");
_groups = list2str(alpm_pkg_get_groups(_pkg), " ");
_optdepends = list2str(alpm_pkg_get_optdepends(_pkg), "\n "); /* line up correctly in info pane */

_optdepends = deplist2str(alpm_pkg_get_optdepends(_pkg), "\n "); /* line up correctly in info pane */
_conflicts = deplist2str(alpm_pkg_get_conflicts(_pkg), " ");
_provides = deplist2str(alpm_pkg_get_provides(_pkg), " ");
_replaces = deplist2str(alpm_pkg_get_replaces(_pkg), " ");
Expand Down

0 comments on commit e9ac8b0

Please sign in to comment.