aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2007-05-17 12:26:26 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2007-05-17 12:26:26 +0000
commit36aaad521482ddb4f237886ef007b9f8f6be7543 (patch)
tree5f869a9ceaeca68683850984b14ec17c6d900344
parent5e3a05789e223cb353719ad84251d70e0eaf1595 (diff)
downloadmailfromd-36aaad521482ddb4f237886ef007b9f8f6be7543.tar.gz
mailfromd-36aaad521482ddb4f237886ef007b9f8f6be7543.tar.bz2
Update
git-svn-id: file:///svnroot/mailfromd/trunk@1449 7a8a7f39-df28-0410-adc6-e0d955640f24
-rw-r--r--ChangeLog3
-rw-r--r--README-alpha6
-rwxr-xr-xbootstrap13
3 files changed, 19 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 4210dc21..65abd1f0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,7 +5,8 @@
officially registered at TP.
* po/LINGUAS: Remove. The file is generated automatically
* bootstrap: Get translations from the TP.
-
+ * README-alpha: Update
+
2007-05-16 Sergey Poznyakoff <gray@gnu.org.ua>
* src/snarf.m4, src/init.m4, src/Makefile.am: Save namespace from
diff --git a/README-alpha b/README-alpha
index 4cb0c1fc..824e66a1 100644
--- a/README-alpha
+++ b/README-alpha
@@ -20,6 +20,7 @@ latest stable version.
- Gnulib <http://www.gnu.org/software/gnulib/>
- M4 <http://www.gnu.org/software/m4/>
- Texinfo <http://www.gnu.org/software/texinfo>
+- Wget <http://www.gnu.org/software/wget/>
* Checking Out the Sources
@@ -50,9 +51,10 @@ once. Packaged alpha versions do not need bootstrapping.
2. Populate the source tree with the necessary files from Gnulib.
and create the configuration framework. Run:
- sh ./bootstrap
+ ./bootstrap GNULIB-DIR
-(make sure gnulib-tool is in your path).
+where GNULIB-DIR is the directory containing the gnulib source tree.
+For more information about `bootstrap', run `bootstrap --help'.
3. Configure and build the package as described in the documentation. See
diff --git a/bootstrap b/bootstrap
index db25c532..80c79877 100755
--- a/bootstrap
+++ b/bootstrap
@@ -64,6 +64,10 @@ Bootstrap this package from the checked-out sources.
--skip-po Do not download po files.
--update-po[=LANG] Update po file(s) and exit.
+The only argument specifes the file name of the directory were gnulib
+sources are located. You will have to check out them beforehand, \`bootstrap'
+won't do this for you.
+
Local defaults can be provided by placing the file \`.bootstrap' in the
current working directory. The file is read, comments and empty lines are
removed, shell variables expanded and the result is prepended to the command
@@ -152,6 +156,15 @@ if [ -n "$GNULIB_DIR" ]; then
else
echo "$0: specified gnulib location is not a directory">&2
fi
+else
+ echo "$0: warning: gnulib source directory not specified">&2
+ echo "$0: warning: looking for gnulib-tool in PATH...">&2
+fi
+
+gnulib-tool --version >/dev/null 2>&1
+if [ $? -ne 0 ]; then
+ echo "$0: Cannot run gnulib-tool. Try \`$0 --help' for more info.">&2
+ exit 1
fi
echo "$0: Bootstrapping $package"

Return to:

Send suggestions and report system problems to the System administrator.