From 72491d8829a15581d92b28b573b38dfc05f9add9 Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Mon, 28 Aug 1995 15:49:54 +0000 Subject: [PATCH] Added startup directory to release tar file --- MakeRelease | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/MakeRelease b/MakeRelease index 50e959121..75ff0cea9 100755 --- a/MakeRelease +++ b/MakeRelease @@ -10,6 +10,10 @@ # [-b] - For fully built release # # $Log$ +# Revision 1.1 1995/08/17 20:14:56 jba +# Added base/tools scripts functionality to base/Makefile, removed scripts +# Moved base/tools/MakeRelease to base dir. +# # Revision 1.14 1994/12/19 18:42:08 tang # Make the args length compatible for HP and SUN. # @@ -100,6 +104,12 @@ ls base/README* | xargs tar cvf ${RELS}.Tar ls base/Makefile* > /tmp/make_release.out.$$; +if [ -d startup ]; + then + find startup -name CVS -prune -o ! -type d -print \ + >> /tmp/make_release.out.$$; + fi + find config base/include base/man base/tools -name CVS -prune -o \ ! -type d -print >> /tmp/make_release.out.$$;