mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-19 03:40:26 +08:00
Makefile.am (UPDATE_TOOLS_ZIP, [...]): Exclude .svn directories.
2008-11-05 Andrew Haley <aph@redhat.com> * tools/Makefile.am (UPDATE_TOOLS_ZIP, CREATE_TOOLS_ZIP): Exclude .svn directories. From-SVN: r141609
This commit is contained in:
parent
904498a495
commit
f158188388
@ -1,3 +1,8 @@
|
||||
2008-11-05 Andrew Haley <aph@redhat.com>
|
||||
|
||||
* tools/Makefile.am (UPDATE_TOOLS_ZIP, CREATE_TOOLS_ZIP): Exclude
|
||||
.svn directories.
|
||||
|
||||
2008-10-20 Andrew John Hughes <gnu_andrew@member.fsf.org>
|
||||
|
||||
* m4/ac_prog_antlr.m4:
|
||||
|
@ -380,11 +380,11 @@ if CREATE_GJDOC
|
||||
endif
|
||||
|
||||
if WITH_JAR
|
||||
CREATE_TOOLS_ZIP=$(JAR) cf ../$(TOOLS_ZIP) .
|
||||
UPDATE_TOOLS_ZIP=$(JAR) uf ../$(TOOLS_ZIP) .
|
||||
CREATE_TOOLS_ZIP=$(JAR) cf ../$(TOOLS_ZIP) `find . -name .svn -prune -o -type f -print`
|
||||
UPDATE_TOOLS_ZIP=$(JAR) uf ../$(TOOLS_ZIP) `find . -name .svn -prune -o -type f -print`
|
||||
else
|
||||
CREATE_TOOLS_ZIP=$(ZIP) -r ../$(TOOLS_ZIP) .
|
||||
UPDATE_TOOLS_ZIP=$(ZIP) -u -r ../$(TOOLS_ZIP) .
|
||||
CREATE_TOOLS_ZIP=$(ZIP) -r ../$(TOOLS_ZIP) `find . -name .svn -prune -o -type f -print`
|
||||
UPDATE_TOOLS_ZIP=$(ZIP) -u -r ../$(TOOLS_ZIP) `find . -name .svn -prune -o -type f -print`
|
||||
endif
|
||||
|
||||
## First add classpath tools stuff.
|
||||
|
@ -698,10 +698,10 @@ noinst_DATA = $(TOOLS_ZIP)
|
||||
|
||||
# Where we want these data files installed.
|
||||
TOOLSdir = $(pkgdatadir)
|
||||
@WITH_JAR_FALSE@CREATE_TOOLS_ZIP = $(ZIP) -r ../$(TOOLS_ZIP) .
|
||||
@WITH_JAR_TRUE@CREATE_TOOLS_ZIP = $(JAR) cf ../$(TOOLS_ZIP) .
|
||||
@WITH_JAR_FALSE@UPDATE_TOOLS_ZIP = $(ZIP) -u -r ../$(TOOLS_ZIP) .
|
||||
@WITH_JAR_TRUE@UPDATE_TOOLS_ZIP = $(JAR) uf ../$(TOOLS_ZIP) .
|
||||
@WITH_JAR_FALSE@CREATE_TOOLS_ZIP = $(ZIP) -r ../$(TOOLS_ZIP) `find . -name .svn -prune -o -type f -print`
|
||||
@WITH_JAR_TRUE@CREATE_TOOLS_ZIP = $(JAR) cf ../$(TOOLS_ZIP) `find . -name .svn -prune -o -type f -print`
|
||||
@WITH_JAR_FALSE@UPDATE_TOOLS_ZIP = $(ZIP) -u -r ../$(TOOLS_ZIP) `find . -name .svn -prune -o -type f -print`
|
||||
@WITH_JAR_TRUE@UPDATE_TOOLS_ZIP = $(JAR) uf ../$(TOOLS_ZIP) `find . -name .svn -prune -o -type f -print`
|
||||
all: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) all-am
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user