diff options
| author | Glenn Morris | 2015-06-05 16:12:44 -0400 |
|---|---|---|
| committer | Glenn Morris | 2015-06-05 16:12:44 -0400 |
| commit | 18942259ce798a4c5147c10f0cbb0c6138fca08c (patch) | |
| tree | c20f21101700c1b82c9c46fd357a33072d168bd4 | |
| parent | 1805ce763ebb40d10c0926f8e97de39e3b988722 (diff) | |
| download | emacs-18942259ce798a4c5147c10f0cbb0c6138fca08c.tar.gz emacs-18942259ce798a4c5147c10f0cbb0c6138fca08c.zip | |
* lisp/Makefile.in (SUBDIRS): Rename from SUBDIRS_ABS.
(SUBDIRS_REL): Derive from SUBDIRS.
| -rw-r--r-- | lisp/Makefile.in | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 9c3bf551b93..46de98925de 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -120,16 +120,18 @@ unexport EMACSDATA EMACSDOC EMACSPATH | |||
| 120 | # Prevent any setting of EMACSLOADPATH in user environment causing problems. | 120 | # Prevent any setting of EMACSLOADPATH in user environment causing problems. |
| 121 | emacs = EMACSLOADPATH= '$(EMACS)' $(EMACSOPT) | 121 | emacs = EMACSLOADPATH= '$(EMACS)' $(EMACSOPT) |
| 122 | 122 | ||
| 123 | SUBDIRS_REL = $(sort $(shell cd ${srcdir} && find . -type d -print)) | 123 | ## Subdirectories, relative to builddir. |
| 124 | SUBDIRS_ABS = $(sort $(shell find ${srcdir} -type d -print)) | 124 | SUBDIRS = $(sort $(shell find ${srcdir} -type d -print)) |
| 125 | ## Subdirectories, relative to srcdir. | ||
| 126 | SUBDIRS_REL = $(patsubst ${srcdir}%,.%,${SUBDIRS}) | ||
| 125 | ## All subdirectories except 'obsolete' and 'term'. | 127 | ## All subdirectories except 'obsolete' and 'term'. |
| 126 | SUBDIRS_ALMOST = $(filter-out ${srcdir}/obsolete ${srcdir}/term,${SUBDIRS_ABS}) | 128 | SUBDIRS_ALMOST = $(filter-out ${srcdir}/obsolete ${srcdir}/term,${SUBDIRS}) |
| 127 | ## All subdirectories except 'obsolete', 'term', and 'leim' (and subdirs). | 129 | ## All subdirectories except 'obsolete', 'term', and 'leim' (and subdirs). |
| 128 | ## We don't want the leim files listed as packages, especially | 130 | ## We don't want the leim files listed as packages, especially |
| 129 | ## since many share basenames with files in language/. | 131 | ## since many share basenames with files in language/. |
| 130 | SUBDIRS_FINDER = $(filter-out ${srcdir}/leim%,${SUBDIRS_ALMOST}) | 132 | SUBDIRS_FINDER = $(filter-out ${srcdir}/leim%,${SUBDIRS_ALMOST}) |
| 131 | ## All subdirectories in which we might want to create subdirs.el. | 133 | ## All subdirectories in which we might want to create subdirs.el. |
| 132 | SUBDIRS_SUBDIRS = $(filter-out ${srcdir}/cedet% ${srcdir}/leim%,${SUBDIRS_ABS}) | 134 | SUBDIRS_SUBDIRS = $(filter-out ${srcdir}/cedet% ${srcdir}/leim%,${SUBDIRS}) |
| 133 | 135 | ||
| 134 | # cus-load and finder-inf are not explicitly requested by anything, so | 136 | # cus-load and finder-inf are not explicitly requested by anything, so |
| 135 | # we add them here to make sure they get built. | 137 | # we add them here to make sure they get built. |