mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-17 10:06:13 +00:00
f6ca84c095
Ref: http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00863.html * compile, config.guess, config.sub, depcomp, install-sh, missing: Remove; autoreconf can supply them. * Makefile.in (sync-from-gnulib): Don't sync config.sub, config.guess, install-sh. Pass -i to autoreconf. * autogen/update_autogen (genfiles): Add compile, config.guess, config.sub, depcomp, install-sh, missing. Pass -i to autoreconf. Discard non-error output from autoreconf in -q case. * autogen/compile, autogen/config.guess, autogen/config.sub: * autogen/depcomp, autogen/install-sh, autogen/missing: New files. * autogen/copy_autogen: Add compile, config.guess, config.sub, depcomp, install-sh, missing. * autogen/README: Add compile, config.guess, config.sub, depcomp, install-sh, missing. * INSTALL.BZR, admin/make-tarball.txt: Add -i to autoreconf args. * .bzrignore: Add compile, config.guess, config.sub, depcomp, install-sh, missing.
27 lines
852 B
Bash
Executable File
27 lines
852 B
Bash
Executable File
#!/bin/sh
|
|
|
|
## Helper script for those building Emacs from bzr without autoconf etc.
|
|
## This installs some pre-generated versions of the automatically
|
|
## generated files. It is highly recommended to install the necessary
|
|
## tools instead of using this. Note that if eg configure.in
|
|
## is updated, the next time you run make it will attempt to
|
|
## regenerate configure and will fail if you do not have the required
|
|
## tools. You will have to run this script again.
|
|
|
|
test -d autogen && cd autogen
|
|
|
|
if test ! -e config.in; then
|
|
echo "Cannot find autogen/ directory."
|
|
exit 1
|
|
fi
|
|
|
|
## Order implied by top-level Makefile's rules, for time-stamps.
|
|
cp compile config.guess config.sub depcomp install-sh missing ../
|
|
cp aclocal.m4 ../
|
|
cp configure ../
|
|
touch ../src/stamp-h.in
|
|
cp config.in ../src/
|
|
cp Makefile.in ../lib/
|
|
|
|
echo "You can now run configure"
|