diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2019-04-10 09:23:52 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2019-04-10 09:23:52 +0200 |
commit | fd8a19992c91350f76c019f3dee8c8e3f0bbe833 (patch) | |
tree | dc9561bf29c02cd9a0ee9a0b3d36628c6cf04916 | |
parent | 833619dc339db42e7102d71b3d989a8a14a700f9 (diff) |
Rather use the list of lists
-rw-r--r-- | community/gsoc/project_ideas/maxpath.mdwn | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/community/gsoc/project_ideas/maxpath.mdwn b/community/gsoc/project_ideas/maxpath.mdwn index 9ef149c2..57b016f5 100644 --- a/community/gsoc/project_ideas/maxpath.mdwn +++ b/community/gsoc/project_ideas/maxpath.mdwn @@ -26,7 +26,7 @@ hints as to why this is so.) There are a few hundred packages in Debian GNU/Hurd failing to build because of this -- simply grep for the offending macros in the -[list_of_build_failures](https://people.debian.org/~sthibault/failed_packages.txt). +[list_of_build_failures](https://www.debian.org/ports/hurd/hurd-devel-debian). Fixing these issues usually boils down to replacing `char foo[PATH_MAX]` by `char *foo`, and using dynamic memory allocation, i.e. e.g. a loop |