You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Charles Randall <cr...@matchlogic.com> on 2001/08/30 18:25:21 UTC

make distclean doesn't

How clean is "distclean" supposed to be? I assumed that it would remove all
files that weren't part of the distribution.

Running these commands,

	tar zxf httpd-2_0_25-alpha.tar.gz
	find httpd-2_0_25 -type f | xargs md5 > before.md5
	cd httpd-2_0_25
	./configure --prefix=$HOME/test/apache --with-port=8080
	make
	make distclean
	cd ..
	find httpd-2_0_25 -type f | xargs md5 > after.md5

I see these differences between before.md5 and after.md5,

% diff -u before.md5 after.md5 | egrep '^[\+\-]'
--- before.md5  Thu Aug 30 10:00:04 2001
+++ after.md5   Thu Aug 30 10:10:08 2001
+MD5 (httpd-2_0_25/build/rules.mk) = 3f4234161d15947992b65ae2e774802f
+MD5 (httpd-2_0_25/os/beos/Makefile) = 520b595f9e4a5c074a649d456be82b5c
+MD5 (httpd-2_0_25/os/beos/.deps) = d41d8cd98f00b204e9800998ecf8427e
+MD5 (httpd-2_0_25/os/os2/Makefile) = 319b8e10e5d84e633141dc0014f3ef2a
+MD5 (httpd-2_0_25/os/os2/.deps) = d41d8cd98f00b204e9800998ecf8427e
+MD5 (httpd-2_0_25/server/exports.c) = 11111a936f30687ea076db8dd268fee9
+MD5 (httpd-2_0_25/srclib/pcre/config.log) =
0217408a0a100fd7f745268f4947ddb0
+MD5 (httpd-2_0_25/srclib/pcre/config.status) =
cfe194138481ee6b117b6915628b7ec8
+MD5 (httpd-2_0_25/srclib/apr/config.nice) =
828b3b21e8573f5898114b790cd381b5
+MD5 (httpd-2_0_25/srclib/apr-util/include/apr_ldap.h) =
bb6d10f320c8b59bc350160fd4726112
+MD5 (httpd-2_0_25/srclib/apr-util/config.nice) =
2d0b2089455807771bdc09690cf0dcd9
-MD5 (httpd-2_0_25/.deps) = d41d8cd98f00b204e9800998ecf8427e
+MD5 (httpd-2_0_25/config.nice) = 105cb0052bc9fa0f83f4a4af9a875d00

That doesn't seem right. In addition to the files that are created during
configure/make but not removed, note that httpd-2_0_25/.deps is in the
distribution but removed by "make distclean".

Charles

Re: make distclean doesn't

Posted by "William A. Rowe, Jr." <wr...@rowe-clan.net>.
From: "Pablo Chepalich" <pc...@montevideo.com.uy>
To: <de...@httpd.apache.org>
Sent: Thursday, August 30, 2001 12:26 PM
Subject: RE: make distclean doesn't


> how can I do to unsuscribe??
> thanks

read the message header (message properies - details - view source)

it provides the directions.


RE: make distclean doesn't

Posted by Pablo Chepalich <pc...@montevideo.com.uy>.
how can I do to unsuscribe??
thanks

-----Mensaje original-----
De: Charles Randall [mailto:crandall@matchlogic.com]
Enviado el: jueves, 30 de agosto de 2001 13:25
Para: 'dev@httpd.apache.org'
Asunto: make distclean doesn't


How clean is "distclean" supposed to be? I assumed that it would remove all
files that weren't part of the distribution.

Running these commands,

	tar zxf httpd-2_0_25-alpha.tar.gz
	find httpd-2_0_25 -type f | xargs md5 > before.md5
	cd httpd-2_0_25
	./configure --prefix=$HOME/test/apache --with-port=8080
	make
	make distclean
	cd ..
	find httpd-2_0_25 -type f | xargs md5 > after.md5

I see these differences between before.md5 and after.md5,

% diff -u before.md5 after.md5 | egrep '^[\+\-]'
--- before.md5  Thu Aug 30 10:00:04 2001
+++ after.md5   Thu Aug 30 10:10:08 2001
+MD5 (httpd-2_0_25/build/rules.mk) = 3f4234161d15947992b65ae2e774802f
+MD5 (httpd-2_0_25/os/beos/Makefile) = 520b595f9e4a5c074a649d456be82b5c
+MD5 (httpd-2_0_25/os/beos/.deps) = d41d8cd98f00b204e9800998ecf8427e
+MD5 (httpd-2_0_25/os/os2/Makefile) = 319b8e10e5d84e633141dc0014f3ef2a
+MD5 (httpd-2_0_25/os/os2/.deps) = d41d8cd98f00b204e9800998ecf8427e
+MD5 (httpd-2_0_25/server/exports.c) = 11111a936f30687ea076db8dd268fee9
+MD5 (httpd-2_0_25/srclib/pcre/config.log) =
0217408a0a100fd7f745268f4947ddb0
+MD5 (httpd-2_0_25/srclib/pcre/config.status) =
cfe194138481ee6b117b6915628b7ec8
+MD5 (httpd-2_0_25/srclib/apr/config.nice) =
828b3b21e8573f5898114b790cd381b5
+MD5 (httpd-2_0_25/srclib/apr-util/include/apr_ldap.h) =
bb6d10f320c8b59bc350160fd4726112
+MD5 (httpd-2_0_25/srclib/apr-util/config.nice) =
2d0b2089455807771bdc09690cf0dcd9
-MD5 (httpd-2_0_25/.deps) = d41d8cd98f00b204e9800998ecf8427e
+MD5 (httpd-2_0_25/config.nice) = 105cb0052bc9fa0f83f4a4af9a875d00

That doesn't seem right. In addition to the files that are created during
configure/make but not removed, note that httpd-2_0_25/.deps is in the
distribution but removed by "make distclean".

Charles