diff options
author | Damien Miller <djm@mindrot.org> | 2019-09-05 13:38:40 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-09-05 13:38:40 +0200 |
commit | afdf27f5aceb4973b9f5308f4310c6e3fd8db1fb (patch) | |
tree | 8343edd259163cf59276a24b1d1c7becb494b40f /Makefile.in | |
parent | extend autoconf freshness test (diff) | |
download | openssh-afdf27f5aceb4973b9f5308f4310c6e3fd8db1fb.tar.xz openssh-afdf27f5aceb4973b9f5308f4310c6e3fd8db1fb.zip |
revert config.h/config.h.in freshness checks
turns out autoreconf and configure don't touch some files if their content
doesn't change, so the mtime can't be relied upon in a makefile rule
Diffstat (limited to '')
-rw-r--r-- | Makefile.in | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Makefile.in b/Makefile.in index de7757f93..8a450ce04 100644 --- a/Makefile.in +++ b/Makefile.in @@ -156,14 +156,10 @@ all: configure-check $(CONFIGFILES) $(MANPAGES) $(TARGETS) $(LIBSSH_OBJS): Makefile.in config.h $(SSHOBJS): Makefile.in config.h $(SSHDOBJS): Makefile.in config.h -configure-check: configure config.h.in config.h +configure-check: configure -configure config.h.in: configure.ac aclocal.m4 - @echo "ERROR: configure or config.h.in are out of date; please run ${AUTORECONF} (and configure)" 1>&2 - @exit 1 - -config.h: config.h.in configure - @echo "ERROR: config.h is out of date; please run configure" 1>&2 +configure: configure.ac aclocal.m4 + @echo "ERROR: configure is out of date; please run ${AUTORECONF} (and configure)" 1>&2 @exit 1 .c.o: |