Bug #201 Missing $(SUPERCLEANFILES) in include/Makefile.in
Submitted: 27 Mar 2003 16:15 Modified: 23 Apr 2003 4:15
Reporter: Christian Hammers (Silver Quality Contributor) (OCA) Email Updates:
Status: Closed Impact on me:
None 
Category:MySQL Server: Compiling Severity:S3 (Non-critical)
Version:4.0.12 OS:Linux (Debian GNU/Linux)
Assigned to: Lenz Grimmer CPU Architecture:Any

[27 Mar 2003 16:15] Christian Hammers
Description:
In include/Makefile.in or better Makefile.am should be applied the following
patch so that really everything that was created is deleted in make distclean.

How to repeat:
./configure ... && make && make distclean
diff --recursive -u mysql-4.0.12.orig mysql-4.0.12

Suggested fix:
--- old/include/Makefile.in.ch      Wed Dec 18 18:27:13 2002
+++ new/include/Makefile.in Wed Dec 18 18:26:52 2002
@@ -221,7 +221,7 @@
 SUPERCLEANFILES = mysql_version.h my_global.h my_config.h
 
 # Some include files that may be moved and patched by configure
-DISTCLEANFILES = sched.h
+DISTCLEANFILES = sched.h $(SUPERCLEANFILES)
 subdir = include
 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
 CONFIG_HEADER = $(top_builddir)/config.h
[23 Apr 2003 4:15] Lenz Grimmer
Thank you for your bug report. This issue has been fixed in the latest
development tree for that product. You can find more information about
accessing our development trees at 
    http://www.mysql.com/doc/en/Installing_source_tree.html

Fixed for MySQL 4.0.13 
 
ChangeSet@1.1462, 2003-04-23 12:44:00+02:00, 
lenz@mysql.com 
   - added $(SUPERCLEANFILES) to DISTCLEANFILES (bug #201) - 
thanks to Christian Hammers for providing this patch