From: James Henstridge Date: Sat, 5 May 2001 08:38:35 +0000 (+0000) Subject: glib-mkenums is not a compiled program, so shouldn't be in the X-Git-Tag: GLIB_1_3_6~75 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=af170c2d8c87586eaeb74a22fc565db3100d3d9a;p=platform%2Fupstream%2Fglib.git glib-mkenums is not a compiled program, so shouldn't be in the 2001-05-05 James Henstridge * Makefile.am: glib-mkenums is not a compiled program, so shouldn't be in the bin_PROGRAMS primary. Put it in bin_SCRIPTS instead, and removed the glib_mkenums_SOURCES var. --- diff --git a/gobject/ChangeLog b/gobject/ChangeLog index d4b7f59..b6fa609 100644 --- a/gobject/ChangeLog +++ b/gobject/ChangeLog @@ -1,3 +1,9 @@ +2001-05-05 James Henstridge + + * Makefile.am: glib-mkenums is not a compiled program, so shouldn't + be in the bin_PROGRAMS primary. Put it in bin_SCRIPTS instead, and + removed the glib_mkenums_SOURCES var. + Thu May 3 06:10:23 2001 Owen Taylor * gobject.c (g_object_set_[q]data_full): Make types of ternary diff --git a/gobject/Makefile.am b/gobject/Makefile.am index c89f134..1b994d9 100644 --- a/gobject/Makefile.am +++ b/gobject/Makefile.am @@ -155,12 +155,12 @@ libgobject_1_3_la_SOURCES = $(gruntime_target_sources) # # programs to compile and install # -bin_PROGRAMS = gobject-query glib-genmarshal glib-mkenums +bin_PROGRAMS = gobject-query glib-genmarshal +bin_SCRIPTS = glib-mkenums noinst_PROGRAMS = testgruntime # source files gobject_query_SOURCES = gobject-query.c glib_genmarshal_SOURCES = glib-genmarshal.c -glib_mkenums_SOURCES = glib-mkenums testgruntime_SOURCES = testgruntime.c # link programs against libgobject progs_LDADD = libgobject-1.3.la $(libglib)