app/core/Makefile.am libgimp/Makefile.am libgimpbase/Makefile.am
2001-12-01 Daniel Egger <degger@fhm.edu> * app/core/Makefile.am * libgimp/Makefile.am * libgimpbase/Makefile.am * libgimpcolor/Makefile.am * libgimpmath/Makefile.am * libgimpwidgets/Makefile.am * modules/Makefile.am * themes/Default/Makefile.am: Don't try to concatenate something to a variable not used before but simply assign it. Shuts up annoying automake warnings for me.
This commit is contained in:

committed by
Daniel Egger

parent
a988317853
commit
d214dbdb5d
13
ChangeLog
13
ChangeLog
@ -1,3 +1,16 @@
|
||||
2001-12-01 Daniel Egger <degger@fhm.edu>
|
||||
|
||||
* app/core/Makefile.am
|
||||
* libgimp/Makefile.am
|
||||
* libgimpbase/Makefile.am
|
||||
* libgimpcolor/Makefile.am
|
||||
* libgimpmath/Makefile.am
|
||||
* libgimpwidgets/Makefile.am
|
||||
* modules/Makefile.am
|
||||
* themes/Default/Makefile.am: Don't try to concatenate something
|
||||
to a variable not used before but simply assign it. Shuts up
|
||||
annoying automake warnings for me.
|
||||
|
||||
2001-12-01 Abel Cheung <maddog@linux.org.hk>
|
||||
|
||||
* tips/{Makefile.am,makefile.mingw}: Added gimp_tips.zh_TW.txt
|
||||
|
@ -167,7 +167,7 @@ EXTRA_DIST = \
|
||||
#
|
||||
# setup autogeneration dependancies
|
||||
gen_sources = xgen-gmh xgen-gmc
|
||||
CLEANFILES += $(gen_sources)
|
||||
CLEANFILES = $(gen_sources)
|
||||
|
||||
$(srcdir)/stamp-gimpmarshal.h: $(srcdir)/gimpmarshal.list gimpmarshal.h
|
||||
glib-genmarshal --prefix=gimp_marshal $(srcdir)/gimpmarshal.list --header >> xgen-gmh \
|
||||
|
@ -169,7 +169,7 @@ gimpinclude_HEADERS = @STRIP_BEGIN@ \
|
||||
gimpmenu.h \
|
||||
@STRIP_END@
|
||||
|
||||
EXTRA_HEADERS +=
|
||||
EXTRA_HEADERS =
|
||||
|
||||
libgimp_1_3_la_LDFLAGS = @STRIP_BEGIN@ \
|
||||
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
||||
|
@ -62,7 +62,7 @@ libgimpbaseinclude_HEADERS = @STRIP_BEGIN@ \
|
||||
gimpversion.h \
|
||||
@STRIP_END@
|
||||
|
||||
EXTRA_HEADERS +=
|
||||
EXTRA_HEADERS =
|
||||
|
||||
libgimpbase_1_3_la_LDFLAGS = @STRIP_BEGIN@ \
|
||||
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
||||
|
@ -49,7 +49,7 @@ libgimpcolorinclude_HEADERS = @STRIP_BEGIN@ \
|
||||
gimprgb.h \
|
||||
@STRIP_END@
|
||||
|
||||
EXTRA_HEADERS +=
|
||||
EXTRA_HEADERS =
|
||||
|
||||
libgimpcolor_1_3_la_LDFLAGS = @STRIP_BEGIN@ \
|
||||
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
||||
|
@ -40,7 +40,7 @@ libgimpmathinclude_HEADERS = @STRIP_BEGIN@ \
|
||||
gimpvector.h \
|
||||
@STRIP_END@
|
||||
|
||||
EXTRA_HEADERS +=
|
||||
EXTRA_HEADERS =
|
||||
|
||||
libgimpmath_1_3_la_LDFLAGS = @STRIP_BEGIN@ \
|
||||
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
||||
|
@ -77,7 +77,7 @@ libgimpwidgetsinclude_HEADERS = @STRIP_BEGIN@ \
|
||||
gimpunitmenu.h \
|
||||
@STRIP_END@
|
||||
|
||||
EXTRA_HEADERS +=
|
||||
EXTRA_HEADERS =
|
||||
|
||||
libgimpwidgets_1_3_la_LDFLAGS = @STRIP_BEGIN@ \
|
||||
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
||||
|
@ -28,7 +28,7 @@ libexec_LTLIBRARIES = @STRIP_BEGIN@ \
|
||||
## libcolorsel_gtk.la \
|
||||
## libcolorsel_water.la \
|
||||
|
||||
EXTRA_LTLIBRARIES +=
|
||||
EXTRA_LTLIBRARIES =
|
||||
|
||||
## libcolorsel_gtk_la_SOURCES = colorsel_gtk.c
|
||||
## libcolorsel_gtk_la_LDFLAGS = -avoid-version -module
|
||||
|
@ -149,7 +149,7 @@ WILBER_VARIABLES = @STRIP_BEGIN@ \
|
||||
@STRIP_END@
|
||||
|
||||
noinst_DATA = gimp-stock-pixbufs.h gimp-wilber-pixbufs.h
|
||||
CLEANFILES += $(noinst_DATA)
|
||||
CLEANFILES = $(noinst_DATA)
|
||||
|
||||
gimp-stock-pixbufs.h: $(STOCK_IMAGES) $(STOCK_TOOL_IMAGES)
|
||||
gdk-pixbuf-csource --raw --build-list $(STOCK_VARIABLES) $(STOCK_TOOL_VARIABLES) >$(srcdir)/gimp-stock-pixbufs.h
|
||||
|
Reference in New Issue
Block a user