summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2003-09-01 04:19:37 +0000
committerH. Peter Anvin <hpa@zytor.com>2003-09-01 04:19:37 +0000
commit2ef2f06125e19f57d5366c8fe4210deaa3e5bfd4 (patch)
treeb53727bd8f43931c7a0e798b0f6b2198da282d44 /misc
parentbdf061f6e72e6d2fadc5890c1d86d5b8efd6768a (diff)
downloadnasm-2ef2f06125e19f57d5366c8fe4210deaa3e5bfd4.tar.gz
Enable the use of a config.h file and autoheader. At this point we don't
actually *use* the resulting configuration file, but it keeps autoconf from creating an insanely long compiler command line, which can cause problems all by itself. Eventually we can do: #ifdef HAVE_CONFIG_H #include "config.h" #endif ... to get the same information.
Diffstat (limited to 'misc')
-rwxr-xr-xmisc/release4
1 files changed, 3 insertions, 1 deletions
diff --git a/misc/release b/misc/release
index 5624a196..fb16996f 100755
--- a/misc/release
+++ b/misc/release
@@ -29,7 +29,9 @@ work=`pwd`/nasm-release.$$
mkdir "$work"
cd "$work"
-if $real; then
+# SF uses a mirror server for anonymous CVS now. Therefore, use a real
+# identity if we have one; otherwise, change the "true" below to "$real".
+if true; then
# Need to tag the tree, use real account
CVS="cvs -z3 -d ${sfuser}@cvs.nasm.sourceforge.net:/cvsroot/nasm"
else