mirror of git://sourceware.org/git/glibc.git
* Makefile ($(includedir)/stubs.h): Add missing backslash.
This commit is contained in:
parent
2a4dcf76ca
commit
13a0be8823
|
|
@ -1,5 +1,7 @@
|
||||||
Mon May 27 10:10:00 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
Mon May 27 10:10:00 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
||||||
|
|
||||||
|
* Makefile ($(includedir)/stubs.h): Add missing backslash.
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/i386/brk.c (__curbrk): Initialize it so it
|
* sysdeps/unix/sysv/linux/i386/brk.c (__curbrk): Initialize it so it
|
||||||
can be aliased.
|
can be aliased.
|
||||||
|
|
||||||
|
|
|
||||||
2
Makefile
2
Makefile
|
|
@ -144,7 +144,7 @@ $(includedir)/stubs.h: subdir_install
|
||||||
echo ' in the C library which is a stub, meaning it will fail';\
|
echo ' in the C library which is a stub, meaning it will fail';\
|
||||||
echo ' every time called, usually setting errno to ENOSYS. */';\
|
echo ' every time called, usually setting errno to ENOSYS. */';\
|
||||||
sort $(subdir-stubs)) > $(objpfx)stubs.h
|
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 ; \
|
then echo stubs.h unchanged ; \
|
||||||
else $(INSTALL_DATA) $(objpfx)stubs.h $@; fi
|
else $(INSTALL_DATA) $(objpfx)stubs.h $@; fi
|
||||||
rm -f $(objpfx)stubs.h
|
rm -f $(objpfx)stubs.h
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue