Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
18942259
Commit
18942259
authored
Jun 05, 2015
by
Glenn Morris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lisp/Makefile.in (SUBDIRS): Rename from SUBDIRS_ABS.
(SUBDIRS_REL): Derive from SUBDIRS.
parent
1805ce76
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
lisp/Makefile.in
lisp/Makefile.in
+6
-4
No files found.
lisp/Makefile.in
View file @
18942259
...
...
@@ -120,16 +120,18 @@ unexport EMACSDATA EMACSDOC EMACSPATH
# Prevent any setting of EMACSLOADPATH in user environment causing problems.
emacs
=
EMACSLOADPATH
=
'
$(EMACS)
'
$(EMACSOPT)
SUBDIRS_REL
=
$(
sort
$(
shell
cd
${srcdir}
&&
find
.
-type
d
-print
))
SUBDIRS_ABS
=
$(
sort
$(
shell
find
${srcdir}
-type
d
-print
))
## Subdirectories, relative to builddir.
SUBDIRS
=
$(
sort
$(
shell
find
${srcdir}
-type
d
-print
))
## Subdirectories, relative to srcdir.
SUBDIRS_REL
=
$(
patsubst
${srcdir}
%,.%,
${SUBDIRS}
)
## All subdirectories except 'obsolete' and 'term'.
SUBDIRS_ALMOST
=
$(
filter-out
${srcdir}
/obsolete
${srcdir}
/term,
${SUBDIRS
_ABS
}
)
SUBDIRS_ALMOST
=
$(
filter-out
${srcdir}
/obsolete
${srcdir}
/term,
${SUBDIRS}
)
## All subdirectories except 'obsolete', 'term', and 'leim' (and subdirs).
## We don't want the leim files listed as packages, especially
## since many share basenames with files in language/.
SUBDIRS_FINDER
=
$(
filter-out
${srcdir}
/leim%,
${SUBDIRS_ALMOST}
)
## All subdirectories in which we might want to create subdirs.el.
SUBDIRS_SUBDIRS
=
$(
filter-out
${srcdir}
/cedet%
${srcdir}
/leim%,
${SUBDIRS
_ABS
}
)
SUBDIRS_SUBDIRS
=
$(
filter-out
${srcdir}
/cedet%
${srcdir}
/leim%,
${SUBDIRS}
)
# cus-load and finder-inf are not explicitly requested by anything, so
# we add them here to make sure they get built.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment