diff options
author | Roland McGrath <roland@gnu.org> | 1996-05-28 00:10:40 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-05-28 00:10:40 +0000 |
commit | 13a0be88230585460587b749e6c7cccfc5339943 (patch) | |
tree | bba75fcc47f2ffbc6e0df71a7e788e1dc65cad3b /Makefile | |
parent | 2a4dcf76ca230994166ea1c573d05ee0f85da1b5 (diff) | |
download | glibc-13a0be88230585460587b749e6c7cccfc5339943.tar.gz |
* Makefile ($(includedir)/stubs.h): Add missing backslash.cvs/libc-960528
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -144,7 +144,7 @@ $(includedir)/stubs.h: subdir_install echo ' in the C library which is a stub, meaning it will fail';\ echo ' every time called, usually setting errno to ENOSYS. */';\ sort $(subdir-stubs)) > $(objpfx)stubs.h - if test -r $@ && cmp -s $(objpfx)stubs.h $@; + if test -r $@ && cmp -s $(objpfx)stubs.h $@; \ then echo stubs.h unchanged ; \ else $(INSTALL_DATA) $(objpfx)stubs.h $@; fi rm -f $(objpfx)stubs.h |