mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
Change the way we decide whether to build gtcltk-lib, so that it's
omitted from the build process when appropriate, but never from the dist process. * configure.in: Don't edit all_subdirs depending on the availability of Tk; let that be the list of all PLUGIN subdirectories present, as it used to be. Instead, edit a new variable, build_subdirs; write its final value, the list of subdirs we do want to compile in, to config.build-subdirs. Substitute that into the top-level Makefile too. * Makefile.in (subdirs): Set this to @build_subdirs@, so we only recurse on the subdirectories we should build. (distdirs): Set this to @existingdirs@, so it includes the subdirs we decided not to build.
This commit is contained in:
parent
39b3bff61a
commit
16ade06b31
1 changed files with 2 additions and 2 deletions
|
@ -19,8 +19,8 @@ VERSION = @GUILE_VERSION@
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
|
|
||||||
srcdir=@srcdir@
|
srcdir=@srcdir@
|
||||||
subdirs=@existingdirs@
|
subdirs=@build_subdirs@
|
||||||
dist_dirs=${subdirs} doc
|
dist_dirs=@existingdirs@ doc
|
||||||
|
|
||||||
DISTFILES = COPYING \
|
DISTFILES = COPYING \
|
||||||
ChangeLog \
|
ChangeLog \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue