diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-11-08 16:53:54 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-11-08 16:53:54 +0000 |
commit | 45bcf00ee95d474f989d5594da378116d63702be (patch) | |
tree | baeb26c4b1f80cd7babb0cb28950a682b71b5fa5 /Makefile.in | |
parent | 63e45826907ea86d967c5903fc31fbde5977db73 (diff) | |
download | fetchmail-45bcf00ee95d474f989d5594da378116d63702be.tar.gz fetchmail-45bcf00ee95d474f989d5594da378116d63702be.tar.bz2 fetchmail-45bcf00ee95d474f989d5594da378116d63702be.zip |
Easy bug fixes for this round.
svn path=/trunk/; revision=3543
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index d010f562..ca352610 100644 --- a/Makefile.in +++ b/Makefile.in @@ -185,20 +185,20 @@ uninstall: .PHONY: clean realclean distclean mostlyclean clean: -cd intl; $(MAKE) clean - #work around braindamage in GNU gettext - -rm -f $(top_builddir)/intl/libintl.h + -rm -f $(top_builddir)/intl/libintl.h # work around GNU gettext brain-damage -cd po; $(MAKE) clean -rm -f fetchmail *.o core fetchmail.dvi \ rcfile_l.c rcfile_y.h rcfile_y.c \ fetchmail.tar fetchmail.tar.gz \ netrc rfc822 unmime fetchmail-man.html +# This target would also normally invoke the following line, but doing so +# messes up the RPM build, so the line was disabled. +# -rm -f config.h config.cache config.status config.log stamp-config distclean: clean -cd intl; $(MAKE) distclean -cd po; $(MAKE) distclean -rm -f TAGS tags - # Can't do these, it messes up RPM build - #-rm -f config.h config.cache config.status config.log stamp-config realclean: distclean -rm -f FAQ FEATURES NOTES MANIFEST |