From: Todd C. Miller Date: Sun, 2 Sep 2007 20:17:23 +0000 (+0000) Subject: "cmp -s" not just cmp X-Git-Tag: SUDO_1_7_0~379 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0459e07d4f0dd83a8f1eb6bfd0f4fd515548e5c4;p=sudo "cmp -s" not just cmp Add @datarootdir@ to quiet autoconf-2.61 --- diff --git a/Makefile.in b/Makefile.in index f651fd0ac..d99f75936 100644 --- a/Makefile.in +++ b/Makefile.in @@ -61,6 +61,7 @@ exec_prefix = @exec_prefix@ bindir = @bindir@ sbindir = @sbindir@ sysconfdir = @sysconfdir@ +datarootdir = @datarootdir@ mandir = @mandir@ noexecdir = @NOEXECDIR@ @@ -200,7 +201,7 @@ sudo_noexec.la: sudo_noexec.lo $(devdir)/gram.c: $(srcdir)/gram.y @DEV@ $(YACC) -d $(srcdir)/gram.y @DEV@ mv -f y.tab.c gram.c -@DEV@ if cmp y.tab.h gram.h; then rm -f y.tab.h; else mv -f y.tab.h gram.h; fi +@DEV@ if cmp -s y.tab.h gram.h; then rm -f y.tab.h; else mv -f y.tab.h gram.h; fi -@true # Uncomment the lines before -@true if you intend to modify toke.l