]> code.delx.au - gnu-emacs/blob - autogen/copy_autogen
4abdbd87c0f43b2d8e6349be0f9fbe475457ca42
[gnu-emacs] / autogen / copy_autogen
1 #!/bin/sh
2
3 ## Helper script for those building Emacs from bzr without autoconf etc.
4 ## This installs some pre-generated versions of the automatically
5 ## generated files. It is highly recommended to install the necessary
6 ## tools instead of using this. Note that if eg configure.in
7 ## is updated, the next time you run make it will attempt to
8 ## regenerate configure and will fail if you do not have the required
9 ## tools. You will have to run this script again.
10
11 if test ! -e config.in; then
12 echo "You must run this script from the autogen/ directory."
13 exit 1
14 fi
15
16 cp configure aclocal.m4 ../
17 cp config.in ../src/
18 cp Makefile.in ../lib/
19
20 echo "You can now run configure"