diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-06-06 12:29:03 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-06 12:29:03 +0200 |
commit | 58e8070682a88a98f2f9d7c4edf6d169c88a3197 (patch) | |
tree | b1849e27fda35e5d325f5e8f4c16b5aef90f4e6f | |
parent | c4e4b5865383d3d38eab09bde0dbedfaa6638930 (diff) | |
download | jenkins.debian.net-58e8070682a88a98f2f9d7c4edf6d169c88a3197.tar.xz |
reproducible: fix language
-rwxr-xr-x | bin/reproducible_html_graphs.sh | 2 | ||||
-rw-r--r-- | etc/pbuilderrc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_graphs.sh b/bin/reproducible_html_graphs.sh index 6c6f00d6..5658a251 100755 --- a/bin/reproducible_html_graphs.sh +++ b/bin/reproducible_html_graphs.sh @@ -609,7 +609,7 @@ create_main_stats_page() { write_page "<tr><td>env LANG</td><td>LANG=\"en_GB.UTF-8\"</td><td>LANG=\"fr_CH.UTF-8\"</td></tr>" write_page "<tr><td>env LC_ALL</td><td><em>unset</em></td><td>LC_ALL=\"fr_CH.UTF-8\"</td></tr>" local NUM_CPU=$(cat /proc/cpuinfo |grep ^processor|wc -l) - write_page "<tr><td>env PATH</td><td>PATH=\"/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:\"</td><td>PATH=\"/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/i/capture/path\"</td></tr>" + write_page "<tr><td>env PATH</td><td>PATH=\"/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:\"</td><td>PATH=\"/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/i/capture/the/path\"</td></tr>" write_page "<tr><td>env DEB_BUILD_OPTIONS</td><td>DEB_BUILD_OPTIONS=\"parallel=$NUM_CPU\"</td><td>DEB_BUILD_OPTIONS=\"parallel=$(echo $NUM_CPU-1|bc)\"<br />(using a different number of cores is on the agenda)</td></tr>" write_page "<tr><td>UTS namespace</td><td><em>shared with the host</em></td><td><em>modified using</em> /usr/bin/unshare --uts</td></tr>" write_page "<tr><td>kernel version, modified using /usr/bin/linux64 --uname-2.6</td><td>$(uname -sr)</td><td>$(/usr/bin/linux64 --uname-2.6 uname -sr)</td></tr>" diff --git a/etc/pbuilderrc b/etc/pbuilderrc index ab772952..84dbc47d 100644 --- a/etc/pbuilderrc +++ b/etc/pbuilderrc @@ -20,7 +20,7 @@ PATH="/usr/sbin:/usr/bin:/sbin:/bin:/usr/games" # using 'unshare --uts'... if [ "$(readlink /proc/1/ns/uts)" != "$(readlink /proc/self/ns/uts)" ]; then umask 0002 - PATH="/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/i/capture/path" + PATH="/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/i/capture/the/path" fi USEDEVSHM=yes |