diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-03-30 00:34:15 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-03-30 00:34:15 +0000 |
commit | 3daa0cf86f72818209c8a5c97a54eeb735750f43 (patch) | |
tree | a0a07baeec0f2d09ffece5345640c60c7a75e7f7 | |
parent | 332013e09efadabcf31c01852690960bf614abd7 (diff) | |
download | samba-3daa0cf86f72818209c8a5c97a54eeb735750f43.tar.gz samba-3daa0cf86f72818209c8a5c97a54eeb735750f43.tar.bz2 samba-3daa0cf86f72818209c8a5c97a54eeb735750f43.zip |
I finally got sick of configure being run automaticaly when I run make
clean or in other situations. That then screws up options I pass to
configure and is generally annoying.
Instead the Makefile now emits a warning if configure needs
rerunning, but doesn't actually run it.
don't re-enable the auto running of configure on pain of death :)
(This used to be commit ea769a280fa85b09463f6bb6e5fc9eaba5641a62)
-rw-r--r-- | source3/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index d2c5a289c6..0fe8921eeb 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -584,10 +584,10 @@ AUTOHEADER=@AUTOHEADER@ # when configure.in is updated, reconfigure $(srcdir)/configure: @MAINT@ $(srcdir)/configure.in $(srcdir)/aclocal.m4 - cd $(srcdir) && $(AUTOCONF) + echo "WARNING: you need to rerun configure" config.status: $(srcdir)/configure - $(SHELL) ./config.status --recheck + echo "WARNING: you need to run ./config.status --recheck" Makefile: $(srcdir)/Makefile.in config.status \ include/stamp-h # just to ensure that config.h is up-to-date |