diff options
author | linimon <linimon@FreeBSD.org> | 2010-06-26 07:38:01 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2010-06-26 07:38:01 +0800 |
commit | af5078695dad5de17d86309ac623b6e07417741a (patch) | |
tree | 35e259a39703766867d403b1d7b7536bdf36cb7d /Tools | |
parent | 893c05e8e1f4d3c592c7811c3fe97626f277344b (diff) | |
download | freebsd-ports-gnome-af5078695dad5de17d86309ac623b6e07417741a.tar.gz freebsd-ports-gnome-af5078695dad5de17d86309ac623b6e07417741a.tar.zst freebsd-ports-gnome-af5078695dad5de17d86309ac623b6e07417741a.zip |
Generalize the packge building scripts to be able to be run on more than
one 'head' node, rather than just pointyhat itself.
Constants are factored out into installation-specific files known as
portbuild/conf/server.conf and portbuild/conf/client.conf. There is
only one server.conf file. Individual <arch> directories may have
their own client.conf files, or may symlink to ../conf/client.conf.
Note the change of the misnomer filename 'cvsdone' to '.updated'.
Feature safe: yes
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/processlogs2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/portbuild/scripts/processlogs2 b/Tools/portbuild/scripts/processlogs2 index 8676b353b0f0..8296003d6711 100755 --- a/Tools/portbuild/scripts/processlogs2 +++ b/Tools/portbuild/scripts/processlogs2 @@ -17,8 +17,8 @@ if [ $(echo $(cat .tmp | wc -l)) = 0 ]; then else set $(cat .tmp) num=$# - if [ -s cvsdone ]; then - echo "(cvs update finished at: $(cat cvsdone))<br>" >> $of + if [ -s .updated ]; then + echo "(ports update finished at: $(cat .updated))<br>" >> $of fi echo "(timestamp of newest log: $(ls -rtTl | grep '\.log$' | tail -1 | awk '{printf("%s %s %s %s\n",$6,$7,$8,$9)}'))<br><br>" >> $of echo "<table border=1>" >>$of |