From: Roland McGrath Date: Mon, 27 May 1996 19:19:29 +0000 (+0000) Subject: * Makefile ($(includedir)/stubs.h): Don't touch target if new one is X-Git-Tag: upstream/2.30~29456 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d36e76923049df98b0f5c99a32cdd79302bf9dff;p=external%2Fglibc.git * Makefile ($(includedir)/stubs.h): Don't touch target if new one is identical. --- diff --git a/ChangeLog b/ChangeLog index 5df192e..4e5aca3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ Mon May 27 10:10:00 1996 Roland McGrath + * Makefile ($(includedir)/stubs.h): Don't touch target if new one is + identical. + * time/Makefile (z.% rule): Generate generic zone%/ rule after zone%/right/ and zone%/posix/ rules so they match first. diff --git a/Makefile b/Makefile index 24203a2..42c1ebb 100644 --- a/Makefile +++ b/Makefile @@ -144,7 +144,8 @@ $(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 - $(INSTALL_DATA) $(objpfx)stubs.h $@ + if test -r $@ && cmp -s $(objpfx)stubs.h $@; then : ; \ + else $(INSTALL_DATA) $(objpfx)stubs.h $@; fi rm -f $(objpfx)stubs.h # This makes the Info or DVI file of the documentation from the Texinfo source.