diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-06-15 21:59:43 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-06-15 21:59:43 +0000 |
commit | abe71ca6476048a89780b5ad7c963ac11e89b358 (patch) | |
tree | 218103ddc290ad7665091af017471c5e9a20c6b5 | |
parent | d0738b5d6741551a5386fba2215fa506b8494c3e (diff) | |
download | glibc-abe71ca6476048a89780b5ad7c963ac11e89b358.tar.gz glibc-abe71ca6476048a89780b5ad7c963ac11e89b358.tar.xz glibc-abe71ca6476048a89780b5ad7c963ac11e89b358.zip |
Update.
1999-06-15 H.J. Lu <hjl@gnu.org> * Make-dist (sysdep_dirs): Exclude SCCS. * MakeTAGS (sysdep_dirs): Likewise.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Make-dist | 3 | ||||
-rw-r--r-- | MakeTAGS | 3 |
3 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 4937680be0..019fe999cf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-06-15 H.J. Lu <hjl@gnu.org> + + * Make-dist (sysdep_dirs): Exclude SCCS. + * MakeTAGS (sysdep_dirs): Likewise. + 1999-06-15 Ulrich Drepper <drepper@cygnus.com> * posix/regex.c (re_error_msgid): Remove extra commas. diff --git a/Make-dist b/Make-dist index 69b1f0120f..c68b98da8c 100644 --- a/Make-dist +++ b/Make-dist @@ -35,7 +35,8 @@ foo:=$(shell echo 'foobar=$(filter %.c %.S %.s %.h,$(distribute))'>&2) ifndef sysdep_dirs # Find all sysdep directories. export sysdep_dirs := $(shell find $(..)sysdeps -type d ! -name bits \ - ! -name CVS ! -name RCS -print) + ! -name CVS ! -name RCS \ + ! -name SCCS -print) else # Defined by the parent. sysdep_dirs := $(addprefix $(..),$(sysdep_dirs)) diff --git a/MakeTAGS b/MakeTAGS index b4320ee896..f6546e8f3c 100644 --- a/MakeTAGS +++ b/MakeTAGS @@ -46,7 +46,8 @@ ifndef sysdep_dirs sysdep_dirs := $(shell find $(..)sysdeps \ $(wildcard \ $(patsubst %,$(..)%/sysdeps,$(add-ons))) \ - -type d ! -name RCS ! -name CVS -print) + -type d ! -name RCS ! -name CVS \ + ! -name SCCS -print) endif # Find all sysdep dirs there are, but putting the ones |