diff options
author | Andrew Haley <aph@redhat.com> | 2008-11-05 13:59:46 +0000 |
---|---|---|
committer | Andrew Haley <aph@gcc.gnu.org> | 2008-11-05 13:59:46 +0000 |
commit | f158188388fb801ce7c328daf1eecd693e27e5e8 (patch) | |
tree | 3ac627037e3614565f3d3c7a0b53f0953e91c912 /libjava/classpath/tools | |
parent | 904498a495e6b7994b4a0e235e4be8dd51920536 (diff) | |
download | gcc-f158188388fb801ce7c328daf1eecd693e27e5e8.zip gcc-f158188388fb801ce7c328daf1eecd693e27e5e8.tar.gz gcc-f158188388fb801ce7c328daf1eecd693e27e5e8.tar.bz2 |
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
Diffstat (limited to 'libjava/classpath/tools')
-rwxr-xr-x | libjava/classpath/tools/Makefile.am | 8 | ||||
-rw-r--r-- | libjava/classpath/tools/Makefile.in | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/libjava/classpath/tools/Makefile.am b/libjava/classpath/tools/Makefile.am index 31c9a6c..2815b79 100755 --- a/libjava/classpath/tools/Makefile.am +++ b/libjava/classpath/tools/Makefile.am @@ -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. diff --git a/libjava/classpath/tools/Makefile.in b/libjava/classpath/tools/Makefile.in index 70518fb..6b72c02 100644 --- a/libjava/classpath/tools/Makefile.in +++ b/libjava/classpath/tools/Makefile.in @@ -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 |