diff options
author | Roland McGrath <roland@gnu.org> | 1999-03-24 12:35:28 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-03-24 12:35:28 +0000 |
commit | 9ba5483de469c1b95d9f2da6b5d8a260f0cf31a4 (patch) | |
tree | 6afe15a7da0da189933d81096b502a534ef1e808 /Makeconfig | |
parent | 5407f442ec52d7aa7a92573b765dafecca74abe4 (diff) | |
download | glibc-9ba5483de469c1b95d9f2da6b5d8a260f0cf31a4.tar glibc-9ba5483de469c1b95d9f2da6b5d8a260f0cf31a4.tar.gz glibc-9ba5483de469c1b95d9f2da6b5d8a260f0cf31a4.tar.bz2 glibc-9ba5483de469c1b95d9f2da6b5d8a260f0cf31a4.zip |
1999-03-24 Roland McGrath <roland@baalperazim.frob.com>
* Makeconfig (sysd-sorted): Use $(..) on rhs of patsubst, so this rule
works properly in subdirs.
Diffstat (limited to 'Makeconfig')
-rw-r--r-- | Makeconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makeconfig b/Makeconfig index c86628433a..3a5780aa5b 100644 --- a/Makeconfig +++ b/Makeconfig @@ -784,7 +784,7 @@ $(common-objpfx)sysd-dirs: $(common-objpfx)config.make $(all-Subdirs-files) all-Depend-files = $(wildcard $(..)*/Depend) $(common-objpfx)sysd-sorted: $(..)scripts/gen-sorted.awk $(all-Depend-files) \ $(common-objpfx)sysd-dirs $(..)Makeconfig - (dirs='$(patsubst $(..)%/Depend,%,$(filter %/Depend, $^))'; \ + (dirs='$(patsubst $(..)%/Depend,$(..)%,$(filter %/Depend, $^))';\ for d in $$dirs; do \ while read on; do \ echo "depend $$d $$on"; \ |