aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2011-07-29 14:59:44 -0700
committerPaul Eggert2011-07-29 14:59:44 -0700
commit74b880cbc18bd0194c7b1fc44c4a983ee05adae2 (patch)
tree3a17efc7aa32c80381625cb2c52cbc4905a0e501
parenteacb6b4bfa897c12c41a4af73f40ab61b45a8548 (diff)
downloademacs-74b880cbc18bd0194c7b1fc44c4a983ee05adae2.tar.gz
emacs-74b880cbc18bd0194c7b1fc44c4a983ee05adae2.zip
* autogen/copy_autogen, autogen/update_autogen: Update build-aux locations.
-rw-r--r--ChangeLog6
-rw-r--r--autogen/README12
-rwxr-xr-xautogen/copy_autogen2
-rwxr-xr-xautogen/update_autogen6
4 files changed, 16 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index de89768c0a2..905562bff24 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,10 @@
12011-07-29 Paul Eggert <eggert@cs.ucla.edu> 12011-07-29 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 Merge from gnulib, using build-aux to remove clutter (Bug#9169). 3 Merge from gnulib, using build-aux to remove clutter (Bug#9169).
4 * autogen/README: Update destination list.
5 * autogen/copy_autogen, autogen/update_autogen, .bzrignore:
6 The autogenerated files compile, config.guess,
7 config.sub, depcomp, install-sh, and missing are now in build-aux.
4 * m4/largefile.m4: New file, so that Emacs does not mess up when 8 * m4/largefile.m4: New file, so that Emacs does not mess up when
5 accessing files with large inode numbers in MacOS X 10.5 and later. 9 accessing files with large inode numbers in MacOS X 10.5 and later.
6 * m4/nocrash.m4: New file, to avoid triggering background debugger 10 * m4/nocrash.m4: New file, to avoid triggering background debugger
@@ -10,8 +14,6 @@
10 * build-aux/snippet/c++defs.h: Renamed from c++defs.h. 14 * build-aux/snippet/c++defs.h: Renamed from c++defs.h.
11 * build-aux/snippet/warn-on-use.h: Renamed from warn-on-use.h. 15 * build-aux/snippet/warn-on-use.h: Renamed from warn-on-use.h.
12 * build-aux/snippet/_Noreturn.h: New file, for draft C1X _Noreturn. 16 * build-aux/snippet/_Noreturn.h: New file, for draft C1X _Noreturn.
13 * .bzrignore: The autogenerated files compile, config.guess,
14 config.sub, depcomp, install-sh, and missing are now in build-aux.
15 * Makefile.in (epaths-force, sync-from-gnulib): 17 * Makefile.in (epaths-force, sync-from-gnulib):
16 move-if-change is now in build-aux. 18 move-if-change is now in build-aux.
17 (GNULIB_TOOL_FLAGS): Avoid threadlib; this is now a prerequisite 19 (GNULIB_TOOL_FLAGS): Avoid threadlib; this is now a prerequisite
diff --git a/autogen/README b/autogen/README
index fd574c41cd6..d4c2236581b 100644
--- a/autogen/README
+++ b/autogen/README
@@ -7,12 +7,12 @@ configure ../ autoconf
7config.in ../src autoheader * also used by MSDOS bzr build 7config.in ../src autoheader * also used by MSDOS bzr build
8aclocal.m4 ../ aclocal 8aclocal.m4 ../ aclocal
9Makefile.in ../lib automake 9Makefile.in ../lib automake
10compile ../ automake 10compile ../build-aux automake
11config.guess ../ automake 11config.guess ../build-aux automake
12config.sub ../ automake 12config.sub ../build-aux automake
13depcomp ../ automake 13depcomp ../build-aux automake
14install-sh ../ automake 14install-sh ../build-aux automake
15missing ../ automake 15missing ../build-aux automake
16 16
17There are also some scripts: 17There are also some scripts:
18 18
diff --git a/autogen/copy_autogen b/autogen/copy_autogen
index a0daf9f02e5..c9f04ad6253 100755
--- a/autogen/copy_autogen
+++ b/autogen/copy_autogen
@@ -16,7 +16,7 @@ if test ! -e config.in; then
16fi 16fi
17 17
18## Order implied by top-level Makefile's rules, for time-stamps. 18## Order implied by top-level Makefile's rules, for time-stamps.
19cp compile config.guess config.sub depcomp install-sh missing ../ 19cp compile config.guess config.sub depcomp install-sh missing ../build-aux
20cp aclocal.m4 ../ 20cp aclocal.m4 ../
21cp configure ../ 21cp configure ../
22touch ../src/stamp-h.in 22touch ../src/stamp-h.in
diff --git a/autogen/update_autogen b/autogen/update_autogen
index c134609356c..e406f346ede 100755
--- a/autogen/update_autogen
+++ b/autogen/update_autogen
@@ -80,7 +80,11 @@ lboot_flag=
80ldefs_in=lisp/loaddefs.el 80ldefs_in=lisp/loaddefs.el
81ldefs_out=lisp/ldefs-boot.el 81ldefs_out=lisp/ldefs-boot.el
82sources="configure.in lib/Makefile.am" 82sources="configure.in lib/Makefile.am"
83genfiles="configure aclocal.m4 src/config.in lib/Makefile.in compile config.guess config.sub depcomp install-sh missing" 83genfiles="
84 configure aclocal.m4 src/config.in lib/Makefile.in
85 build-aux/compile build-aux/config.guess build-aux/config.sub
86 build-aux/depcomp build-aux/install-sh build-aux/missing
87"
84 88
85for g in $genfiles; do 89for g in $genfiles; do
86 basegen="$basegen ${g##*/}" 90 basegen="$basegen ${g##*/}"