diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-09-15 10:19:31 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-09-15 10:19:31 +0200 |
commit | 333ceaa54bc27de48fc6eecc7b0a3e75a0c5ce50 (patch) | |
tree | 2a7eb5f83e5fa44275da89cb39b7c3aaeec07413 /sysdeps/mach/hurd | |
parent | de5e81691c80468ff97c5260b4020aeaecfe418d (diff) | |
download | glibc-333ceaa54bc27de48fc6eecc7b0a3e75a0c5ce50.tar glibc-333ceaa54bc27de48fc6eecc7b0a3e75a0c5ce50.tar.gz glibc-333ceaa54bc27de48fc6eecc7b0a3e75a0c5ce50.tar.bz2 glibc-333ceaa54bc27de48fc6eecc7b0a3e75a0c5ce50.zip |
Fix typo
* sysdeps/mach/hurd/Makefile ($(patsubst %,$(hurd-objpfx)hurd/%.%,auth io fs
process)): Fix bogus %.% pattern into %.h.
Diffstat (limited to 'sysdeps/mach/hurd')
-rw-r--r-- | sysdeps/mach/hurd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/Makefile b/sysdeps/mach/hurd/Makefile index 97997b601b..42cfbce8af 100644 --- a/sysdeps/mach/hurd/Makefile +++ b/sysdeps/mach/hurd/Makefile @@ -46,7 +46,7 @@ hurd-objpfx = $(common-objpfx)hurd/ # These are all the generated headers that <hurd.h> includes. before-compile += $(patsubst %,$(hurd-objpfx)hurd/%.h,auth io fs process) -$(patsubst %,$(hurd-objpfx)hurd/%.%,auth io fs process): hurd-before-compile +$(patsubst %,$(hurd-objpfx)hurd/%.h,auth io fs process): hurd-before-compile .PHONY: hurd-before-compile hurd-before-compile: $(common-objpfx)mach/mach-shortcuts.h $(MAKE) -C $(..)hurd subdir=hurd before-compile no_deps=t |