aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2002-10-18 19:57:54 +0000
committerEric S. Raymond <esr@thyrsus.com>2002-10-18 19:57:54 +0000
commit900ac467a9c4905966108822f7ad906f4fd5d991 (patch)
tree5550976b95479317b459d49ca107e5c34701cb0e
parentd8b1f738e5c8a81d5ea9f81a585b7c97d0fbc7bf (diff)
downloadfetchmail-900ac467a9c4905966108822f7ad906f4fd5d991.tar.gz
fetchmail-900ac467a9c4905966108822f7ad906f4fd5d991.tar.bz2
fetchmail-900ac467a9c4905966108822f7ad906f4fd5d991.zip
Build in su doesn't work any more.
svn path=/trunk/; revision=3754
-rwxr-xr-xmakerelease4
1 files changed, 2 insertions, 2 deletions
diff --git a/makerelease b/makerelease
index eba4d744..2353a4f0 100755
--- a/makerelease
+++ b/makerelease
@@ -58,12 +58,12 @@ if ($versions[0] eq $rcsid) {
print "Building $version release, RCS ID $rcsid, previous RCS ID $oldid\n";
print "### Test-building the software...\n";
-if (system("su -c '(configure --disable-nls; make) $null' esr")) {
+if (system("configure --disable-nls; make")) {
die("Compilation failure\n");
}
print "### Building the distribution...\n";
-if (system("su -c 'make dist $null' esr")) {
+if (system("make dist $null")) {
die("Distribution-build failure\n");
}