diff options
| author | Glenn Morris | 2011-05-24 00:06:44 -0700 |
|---|---|---|
| committer | Glenn Morris | 2011-05-24 00:06:44 -0700 |
| commit | cee4acda703aad2cd6f403bd31cebe1bc06a1a70 (patch) | |
| tree | 7577d657b9d9e8a35af561c36fec765e977103cd | |
| parent | a877df060de456381a66c387c3973371234776c1 (diff) | |
| download | emacs-cee4acda703aad2cd6f403bd31cebe1bc06a1a70.tar.gz emacs-cee4acda703aad2cd6f403bd31cebe1bc06a1a70.zip | |
Fix previous Makefile change.
* configure.in (OPT_MAKEFILES_IN): Use full path.
* Makefile.in (SUBDIR_MAKEFILES_IN): Use full path.
(SUBDIR_MAKEFILES): Use relative path.
| -rw-r--r-- | Makefile.in | 19 | ||||
| -rw-r--r-- | configure.in | 2 |
2 files changed, 14 insertions, 7 deletions
diff --git a/Makefile.in b/Makefile.in index f60e70ac518..eacf6f12b72 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -268,12 +268,19 @@ SUBDIR = lib lib-src src lisp | |||
| 268 | OPT_MAKEFILES_IN = @OPT_MAKEFILES_IN@ | 268 | OPT_MAKEFILES_IN = @OPT_MAKEFILES_IN@ |
| 269 | 269 | ||
| 270 | # The subdir makefiles created by config.status. | 270 | # The subdir makefiles created by config.status. |
| 271 | SUBDIR_MAKEFILES_IN = lib/Makefile.in lib-src/Makefile.in \ | 271 | SUBDIR_MAKEFILES_IN = $(srcdir)/lib/Makefile.in \ |
| 272 | doc/emacs/Makefile.in doc/misc/Makefile.in doc/lispref/Makefile.in \ | 272 | $(srcdir)/lib-src/Makefile.in \ |
| 273 | doc/lispintro/Makefile.in src/Makefile.in oldXMenu/Makefile.in \ | 273 | $(srcdir)/doc/emacs/Makefile.in \ |
| 274 | lwlib/Makefile.in leim/Makefile.in lisp/Makefile.in $(OPT_MAKEFILES_IN) | 274 | $(srcdir)/doc/misc/Makefile.in \ |
| 275 | 275 | $(srcdir)/doc/lispref/Makefile.in \ | |
| 276 | SUBDIR_MAKEFILES = $(SUBDIR_MAKEFILES_IN:.in=) | 276 | $(srcdir)/doc/lispintro/Makefile.in \ |
| 277 | $(srcdir)/src/Makefile.in \ | ||
| 278 | $(srcdir)/oldXMenu/Makefile.in \ | ||
| 279 | $(srcdir)/lwlib/Makefile.in \ | ||
| 280 | $(srcdir)/leim/Makefile.in \ | ||
| 281 | $(srcdir)/lisp/Makefile.in $(OPT_MAKEFILES_IN) | ||
| 282 | |||
| 283 | SUBDIR_MAKEFILES = `echo $(SUBDIR_MAKEFILES_IN:.in=) | sed 's|$(srcdir)/||g'` | ||
| 277 | 284 | ||
| 278 | # Subdirectories to install, and where they'll go. | 285 | # Subdirectories to install, and where they'll go. |
| 279 | # lib-src's makefile knows how to install it, so we don't do that here. | 286 | # lib-src's makefile knows how to install it, so we don't do that here. |
diff --git a/configure.in b/configure.in index c06965ca17d..3d1eb286aa7 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -3719,7 +3719,7 @@ AC_CONFIG_FILES([Makefile lib/Makefile lib-src/Makefile oldXMenu/Makefile \ | |||
| 3719 | 3719 | ||
| 3720 | dnl test/ is not present in release tarfiles. | 3720 | dnl test/ is not present in release tarfiles. |
| 3721 | if test -f $srcdir/test/automated/Makefile.in; then | 3721 | if test -f $srcdir/test/automated/Makefile.in; then |
| 3722 | OPT_MAKEFILES_IN=test/automated/Makefile.in | 3722 | OPT_MAKEFILES_IN="\$(srcdir)/test/automated/Makefile.in" |
| 3723 | AC_CONFIG_FILES([test/automated/Makefile]) | 3723 | AC_CONFIG_FILES([test/automated/Makefile]) |
| 3724 | else | 3724 | else |
| 3725 | OPT_MAKEFILES_IN= | 3725 | OPT_MAKEFILES_IN= |