diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-09-13 19:50:22 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-09-13 19:50:22 +0200 |
commit | 7650f7be3a934cba6c21595dec38eb5537bf3197 (patch) | |
tree | cac1fd56dbf035b47577144dd786fd3f9350ed5e /sysdeps | |
parent | 0ce657c576bf1b2436c4e14a002eaf461897d82c (diff) | |
download | glibc-7650f7be3a934cba6c21595dec38eb5537bf3197.tar.gz glibc-7650f7be3a934cba6c21595dec38eb5537bf3197.tar.xz glibc-7650f7be3a934cba6c21595dec38eb5537bf3197.zip |
Fix typo
* sysdeps/mach/hurd/Makefile ($(patsubst %,$(hurd-objpfx)hurd/%.%,auth io fs process)): Drop spurious backslash.
Diffstat (limited to 'sysdeps')
-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 d8db400579..97997b601b 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/%.%,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 |