summaryrefslogtreecommitdiff
path: root/Makeconfig
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2006-03-01 10:35:59 +0000
committerRoland McGrath <roland@gnu.org>2006-03-01 10:35:59 +0000
commit04dca8d316213b951249e3481ed8d9408495421d (patch)
treedfdfcdf5a03e988f0bc3d772e5ea2d43a65f3a5b /Makeconfig
parentc9dc3f62698e9b456869ba8c1f0fd8f3c672ebf2 (diff)
* version.h (VERSION): 2.3.91
* Makeconfig (sysdeps-srcdirs): New variable. (sysdeps-add-ons-srcdirs): Use it. * csu/Makefile (all-Banner-files): Use it. * Makefile (dist-selector): New variable. (glibc-%.tar rule): Use it. Make $(dist-separate) tarballs contain one version-named directory.
Diffstat (limited to 'Makeconfig')
-rw-r--r--Makeconfig7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makeconfig b/Makeconfig
index cc44b00012..1f4b62822a 100644
--- a/Makeconfig
+++ b/Makeconfig
@@ -107,9 +107,10 @@ sysdirs := $(foreach D,$(config-sysdirs),$(firstword $(filter /%,$D) $(..)$D))
# to find specific add-on files without assuming the add-on directory name.
# It also means that headers can go into an add-on's base directory
# instead of the add-on needing a sysdeps/generic of its own.
-+sysdep_dirs := $(sysdirs) $(foreach add-on,$(sysdeps-add-ons),\
- $(firstword $(filter /%,$(add-on)) \
- $(..)$(add-on)))
+sysdeps-srcdirs := $(foreach add-on,$(sysdeps-add-ons),\
+ $(firstword $(filter /%,$(add-on)) \
+ $(..)$(add-on)))
++sysdep_dirs = $(sysdirs) $(sysdeps-srcdirs)
ifdef objdir
+sysdep_dirs := $(objdir) $(+sysdep_dirs)
endif