From 0459e07d4f0dd83a8f1eb6bfd0f4fd515548e5c4 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Sun, 2 Sep 2007 20:17:23 +0000 Subject: [PATCH] "cmp -s" not just cmp Add @datarootdir@ to quiet autoconf-2.61 --- Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.50.1