diff options
author | Matt Wilson <msw@redhat.com> | 2001-09-18 13:26:52 +0000 |
---|---|---|
committer | Matt Wilson <msw@src.gnome.org> | 2001-09-18 13:26:52 +0000 |
commit | cbae279486cd8d098be6ad9023fac6ed10fab20e (patch) | |
tree | d3f5b0ffbbd5c3da527e01a9a75506a913121ea9 /gdk-pixbuf | |
parent | a25167914836070833b1720933d048ba82a40c64 (diff) | |
download | gtk+-cbae279486cd8d098be6ad9023fac6ed10fab20e.tar.gz |
don't use += before =
2001-09-18 Matt Wilson <msw@redhat.com>
* docs/Makefile.am (EXTRA_DIST): don't use += before =
* docs/faq/Makefile.am (EXTRA_DIST): likewise
* docs/tutorial/Makefile.am (EXTRA_DIST): likewise
* gdk/Makefile.am (MAINTAINERCLEANFILES): likewise
(EXTRA_HEADERS): likewise
* gtk/Makefile.am (MAINTAINERCLEANFILES): likewise
(EXTRA_HEADERS): likewise
(EXTRA_DIST): likewise
(CLEANFILES): likewise
* gtk/stock-icons/Makefile.am (CLEANFILES): likewise
* tests/Makefile.am (EXTRA_DIST): likewise
* Makefile.am (install-data-local): changed to use
install-data-hook, which runs after install-pkgconfigDATA, so that
the pkgconfigdir will have been created and populated first.
gdk-pixbuf/ChangeLog
2001-09-17 Matt Wilson <msw@redhat.com>
* Makefile.am (libpixbufloader_xbm_la_LDFLAGS): removed duplicate
LDFLAGS definition, use the -avoid-version one.
(libpixbufloader_tga_la_LDFLAGS): likewise
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r-- | gdk-pixbuf/ChangeLog | 6 | ||||
-rw-r--r-- | gdk-pixbuf/Makefile.am | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog index 97e138870a..1f1df403e4 100644 --- a/gdk-pixbuf/ChangeLog +++ b/gdk-pixbuf/ChangeLog @@ -1,3 +1,9 @@ +2001-09-17 Matt Wilson <msw@redhat.com> + + * Makefile.am (libpixbufloader_xbm_la_LDFLAGS): removed duplicate + LDFLAGS definition, use the -avoid-version one. + (libpixbufloader_tga_la_LDFLAGS): likewise + Mon Sep 17 11:49:02 2001 Owen Taylor <otaylor@redhat.com> * pixops/*: Mirror GdkInterpType to PixopsInterpType diff --git a/gdk-pixbuf/Makefile.am b/gdk-pixbuf/Makefile.am index fad3395478..8707a1b031 100644 --- a/gdk-pixbuf/Makefile.am +++ b/gdk-pixbuf/Makefile.am @@ -91,7 +91,6 @@ libpixbufloader_wbmp_la_LIBADD = $(module_libs) # The XBM loader # libpixbufloader_xbm_la_SOURCES = io-xbm.c -libpixbufloader_xbm_la_LDFLAGS = -version-info 1:0:0 -module libpixbufloader_xbm_la_LDFLAGS = -avoid-version -module libpixbufloader_xbm_la_LIBADD = $(module_libs) @@ -99,7 +98,6 @@ libpixbufloader_xbm_la_LIBADD = $(module_libs) # The TGA loader # libpixbufloader_tga_la_SOURCES = io-tga.c -libpixbufloader_tga_la_LDFLAGS = -version-info 1:0:0 -module libpixbufloader_tga_la_LDFLAGS = -avoid-version -module libpixbufloader_tga_la_LIBADD = $(module_libs) |