diff options
author | Tim Janik <timj@gtk.org> | 2001-04-04 02:31:40 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2001-04-04 02:31:40 +0000 |
commit | 924271012f471888f68be64689b3db0a6484fa96 (patch) | |
tree | 3ce11d19a93f0c27293d1d2a9d8e3423cda7c859 | |
parent | a14df7b98aaef645f3a7d212e9128fc4039fe6a6 (diff) |
disabled "for i in $(HTML_IMAGES) ;" dist-hook because $(HTML_IMAGES) is
Wed Apr 4 00:56:00 2001 Tim Janik <timj@gtk.org>
* gobject/Makefile.am: disabled "for i in $(HTML_IMAGES) ;"
dist-hook because $(HTML_IMAGES) is empty.
-rw-r--r-- | docs/reference/ChangeLog | 5 | ||||
-rw-r--r-- | docs/reference/gobject/Makefile.am | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index b05bafd67..380032927 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,8 @@ +Wed Apr 4 00:56:00 2001 Tim Janik <timj@gtk.org> + + * gobject/Makefile.am: disabled "for i in $(HTML_IMAGES) ;" + dist-hook because $(HTML_IMAGES) is empty. + Tue Apr 3 11:51:02 2001 Owen Taylor <otaylor@redhat.com> * {glib,gobject}/Makefile.am (sgml-build.stamp): Add diff --git a/docs/reference/gobject/Makefile.am b/docs/reference/gobject/Makefile.am index b5cf91807..00e61fcc6 100644 --- a/docs/reference/gobject/Makefile.am +++ b/docs/reference/gobject/Makefile.am @@ -168,8 +168,9 @@ dist-hook: dist-check-gtkdoc dist-hook-local -cp $(srcdir)/sgml/*.bottom $(srcdir)/sgml/*.top $(distdir)/sgml -cp $(srcdir)/html/index.sgml $(distdir)/html -cp $(srcdir)/html/*.html $(srcdir)/html/*.css $(distdir)/html - for i in $(HTML_IMAGES) ; do \ - cp $(srcdir)/$$i $(distdir)/html ; \ - done + +# for i in $(HTML_IMAGES) ; do \ +# cp $(srcdir)/$$i $(distdir)/html ; \ +# done .PHONY : dist-hook-local |