mirror of git://gcc.gnu.org/git/gcc.git
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>
|
2008-10-20 Andrew John Hughes <gnu_andrew@member.fsf.org>
|
||||||
|
|
||||||
* m4/ac_prog_antlr.m4:
|
* m4/ac_prog_antlr.m4:
|
||||||
|
|
|
||||||
|
|
@ -380,11 +380,11 @@ if CREATE_GJDOC
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if WITH_JAR
|
if WITH_JAR
|
||||||
CREATE_TOOLS_ZIP=$(JAR) cf ../$(TOOLS_ZIP) .
|
CREATE_TOOLS_ZIP=$(JAR) cf ../$(TOOLS_ZIP) `find . -name .svn -prune -o -type f -print`
|
||||||
UPDATE_TOOLS_ZIP=$(JAR) uf ../$(TOOLS_ZIP) .
|
UPDATE_TOOLS_ZIP=$(JAR) uf ../$(TOOLS_ZIP) `find . -name .svn -prune -o -type f -print`
|
||||||
else
|
else
|
||||||
CREATE_TOOLS_ZIP=$(ZIP) -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) .
|
UPDATE_TOOLS_ZIP=$(ZIP) -u -r ../$(TOOLS_ZIP) `find . -name .svn -prune -o -type f -print`
|
||||||
endif
|
endif
|
||||||
|
|
||||||
## First add classpath tools stuff.
|
## First add classpath tools stuff.
|
||||||
|
|
|
||||||
|
|
@ -698,10 +698,10 @@ noinst_DATA = $(TOOLS_ZIP)
|
||||||
|
|
||||||
# Where we want these data files installed.
|
# Where we want these data files installed.
|
||||||
TOOLSdir = $(pkgdatadir)
|
TOOLSdir = $(pkgdatadir)
|
||||||
@WITH_JAR_FALSE@CREATE_TOOLS_ZIP = $(ZIP) -r ../$(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) .
|
@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) .
|
@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) .
|
@WITH_JAR_TRUE@UPDATE_TOOLS_ZIP = $(JAR) uf ../$(TOOLS_ZIP) `find . -name .svn -prune -o -type f -print`
|
||||||
all: $(BUILT_SOURCES)
|
all: $(BUILT_SOURCES)
|
||||||
$(MAKE) $(AM_MAKEFLAGS) all-am
|
$(MAKE) $(AM_MAKEFLAGS) all-am
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue