Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | make_index: Remove unneeded include Submitted by: David Demelier |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e38d69a14927307fbe3b08e7513bd9d4 |
User & Date: | bdrewery 2013-06-04 11:58:52 |
Context
2013-06-11
| ||
18:51 | parallel_exec: Fix to not disable 'set -e' in child cmd due to || This set -e juggling is to keep this function portable to other scripts that may or may not be running set -e. This fixes compute_deps() finding invalid port origins and not properly stopping before the build starts, which can lead to infinite loops check-in: 7243a6f3d1 user: bdrewery tags: trunk | |
2013-06-04
| ||
11:58 | make_index: Remove unneeded include Submitted by: David Demelier check-in: e38d69a149 user: bdrewery tags: trunk | |
2013-06-03
| ||
11:05 | HTML: Move all assets into assets/ This moves logo.jpg so that shell tab completion is easier when completing logs/ in the directory. It also cleans up the directory structure in case we import more client-side libraries. Reported by: ak check-in: 7e37695211 user: bdrewery tags: trunk | |
Changes
Changes to src/libexec/poudriere/make_index.c.
456 457 458 459 460 461 462 463 |
ports_read(&ports, argv[0]);
ports_write(&ports, argv[1]);
ports_free(&ports);
return 0;
}
#include <stdio.h>
|
< |
456 457 458 459 460 461 462 |
ports_read(&ports, argv[0]); ports_write(&ports, argv[1]); ports_free(&ports); return 0; } |