2 new revisions: Revision: f1f180079699 Author: Muneyuki Noguchi <[email protected]> Date: Tue Aug 21 06:56:35 2012 Log: Change output from `make sum'.... http://code.google.com/p/uim/source/detail?r=f1f180079699
Revision: face7e07d2b8 Author: Muneyuki Noguchi <[email protected]> Date: Fri Sep 28 18:27:19 2012 Log: Don't hardcode sed in Makefile.am.... http://code.google.com/p/uim/source/detail?r=face7e07d2b8 ============================================================================== Revision: f1f180079699 Author: Muneyuki Noguchi <[email protected]> Date: Tue Aug 21 06:56:35 2012 Log: Change output from `make sum'. * Makefile.am - (sum): Output hash function name. http://code.google.com/p/uim/source/detail?r=f1f180079699 Modified: /Makefile.am ======================================= --- /Makefile.am Sat Jul 28 04:54:03 2012 +++ /Makefile.am Tue Aug 21 06:56:35 2012 @@ -46,8 +46,8 @@ fi sum: - $(MD5) $(DIST_ARCHIVES) >$(DIST_SUM_LIST) - $(SHA1) $(DIST_ARCHIVES) >>$(DIST_SUM_LIST) + $(MD5) $(DIST_ARCHIVES) | $(SED) 's/^/MD5: /' >$(DIST_SUM_LIST) + $(SHA1) $(DIST_ARCHIVES) | $(SED) 's/^/SHA1: /' >>$(DIST_SUM_LIST) distclean-local: if test '$(top_srcdir)' != '$(top_builddir)'; then \ ============================================================================== Revision: face7e07d2b8 Author: Muneyuki Noguchi <[email protected]> Date: Fri Sep 28 18:27:19 2012 Log: Don't hardcode sed in Makefile.am. * gtk2/toolbar/Makefile.am - (server_in_files): Replace sed with $(SED). * gtk3/toolbar/Makefile.am - (applet_in_files): Ditto. http://code.google.com/p/uim/source/detail?r=face7e07d2b8 Modified: /gtk2/toolbar/Makefile.am /gtk3/toolbar/Makefile.am ======================================= --- /gtk2/toolbar/Makefile.am Tue May 24 07:45:43 2011 +++ /gtk2/toolbar/Makefile.am Fri Sep 28 18:27:19 2012 @@ -29,8 +29,8 @@ @INTLTOOL_SERVER_RULE@ $(server_in_files): $(server_in_in_files) Makefile - sed s,@LIBEXECDIR@,$(libexecdir),g <$< >[email protected] - sed s,@UIM_PIXMAPSDIR@,$(uim_pixmapsdir),g <[email protected] >$@ + $(SED) s,@LIBEXECDIR@,$(libexecdir),g <$< >[email protected] + $(SED) s,@UIM_PIXMAPSDIR@,$(uim_pixmapsdir),g <[email protected] >$@ DISTCLEANFILES = GNOME_UimApplet.server.in GNOME_UimApplet.server \ GNOME_UimApplet.server.in.tmp ======================================= --- /gtk3/toolbar/Makefile.am Tue May 24 07:45:43 2011 +++ /gtk3/toolbar/Makefile.am Fri Sep 28 18:27:19 2012 @@ -24,8 +24,8 @@ applet_in_in_files = $(applet_in_files:=.in) $(applet_in_files): $(applet_in_in_files) Makefile - sed s,@LIBEXECDIR@,$(libexecdir),g <$< >[email protected] - sed s,@UIM_PIXMAPSDIR@,$(uim_pixmapsdir),g <[email protected] >$@ + $(SED) s,@LIBEXECDIR@,$(libexecdir),g <$< >[email protected] + $(SED) s,@UIM_PIXMAPSDIR@,$(uim_pixmapsdir),g <[email protected] >$@ po_files = $(wildcard $(top_srcdir)/po/*.po) $(applet_DATA): $(applet_in_files) $(INTLTOOL_MERGE) $(po_files)
