]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
build: Avoid file name length limitation of tar
authorDaiki Ueno <ueno@gnu.org>
Wed, 30 Sep 2015 08:33:13 +0000 (17:33 +0900)
committerDaiki Ueno <ueno@gnu.org>
Wed, 30 Sep 2015 08:34:08 +0000 (17:34 +0900)
"csharpdoc" is a bit too long to accommodate long file names with
the version returned from git-version-gen:
  tar: gettext-0.19.6.4-1e74e4/.../csharpdoc/...: file name is too
    long (max 99); not dumped
* gettext-runtime/intl-csharp/doc: Rename from csharpdoc.
* gettext-runtime/intl-cshap/Makefile.am (doc, DOC_FILES): Adjust to the
directory name change.

gettext-runtime/intl-csharp/ChangeLog
gettext-runtime/intl-csharp/Makefile.am
gettext-runtime/intl-csharp/doc/GNU_Gettext.html [moved from gettext-runtime/intl-csharp/csharpdoc/GNU_Gettext.html with 100% similarity]
gettext-runtime/intl-csharp/doc/GNU_Gettext_GettextResourceManager.html [moved from gettext-runtime/intl-csharp/csharpdoc/GNU_Gettext_GettextResourceManager.html with 100% similarity]
gettext-runtime/intl-csharp/doc/GNU_Gettext_GettextResourceSet.html [moved from gettext-runtime/intl-csharp/csharpdoc/GNU_Gettext_GettextResourceSet.html with 100% similarity]
gettext-runtime/intl-csharp/doc/begin.html [moved from gettext-runtime/intl-csharp/csharpdoc/begin.html with 100% similarity]
gettext-runtime/intl-csharp/doc/index.html [moved from gettext-runtime/intl-csharp/csharpdoc/index.html with 100% similarity]
gettext-runtime/intl-csharp/doc/namespaces.html [moved from gettext-runtime/intl-csharp/csharpdoc/namespaces.html with 100% similarity]

index 075ddd55d28b4955cad7ea2cf69029fac40cdd2e..cf10aba32cc3043b0ffc187402c881f7d9ca1e76 100644 (file)
@@ -1,3 +1,13 @@
+2015-09-30  Daiki Ueno  <ueno@gnu.org>
+
+       build: Avoid file name length limitation of tar
+       "csharpdoc" is a bit too long to accommodate long file names with
+       the version returned from git-version-gen:
+         tar: gettext-0.19.6.4-1e74e4/.../csharpdoc/...: file name is too
+           long (max 99); not dumped
+       * doc: Rename from csharpdoc.
+       * Makefile.am (doc, DOC_FILES): Adjust to the directory name change.
+
 2015-09-11  Daiki Ueno  <ueno@gnu.org>
 
        * gettext 0.19.6 released.
index 3a8563ff5b606bd731b53398573c52837f74125c..fc754177d3669b866e154faa1c44db85ce2fb378 100644 (file)
@@ -61,24 +61,24 @@ uninstall-dll:
 
 # C# reference documentation. Requires the pnet tools.
 
-csharpdoc:
-       test -d csharpdoc || mkdir csharpdoc
+doc:
+       test -d doc || mkdir doc
        csdoc -flibrary-name=GNU.Gettext intl.cs | \
-       csdoc2html -o csharpdoc -fmulti-file -fframes -fcombine-members -fno-namespace-directories -
+       csdoc2html -o doc -fmulti-file -f<frames -fcombine-members -fno-namespace-directories -
 
 intl-csharp.texi: intl.cs
        csdoc -flibrary-name=GNU.Gettext intl.cs | \
        csdoc2texi -fembedded -fparent='C#' -o $@ -
 
-all-doc: $(srcdir)/csharpdoc/index.html
+all-doc: $(srcdir)/doc/index.html
 
 DOC_FILES = \
-  csharpdoc/index.html \
-  csharpdoc/namespaces.html \
-  csharpdoc/begin.html \
-  csharpdoc/GNU_Gettext.html \
-  csharpdoc/GNU_Gettext_GettextResourceManager.html \
-  csharpdoc/GNU_Gettext_GettextResourceSet.html
+  doc/index.html \
+  doc/namespaces.html \
+  doc/begin.html \
+  doc/GNU_Gettext.html \
+  doc/GNU_Gettext_GettextResourceManager.html \
+  doc/GNU_Gettext_GettextResourceSet.html
 
 EXTRA_DIST += $(DOC_FILES)