[Setup-tool-hackers] Makefile patch ...




Hi Guys,

	Just cleaned the backends Makefile to reduce duplication, I'd like
to know who to send patches to or where to get commit approval from for
this sort of thing ?

	Regards,

		Michael.

-- 
 mmeeks@gnu.org  <><, Pseudo Engineer, itinerant idiot
? print
? print-conf.in
? printcap.man
? gettext.pl
? print.pl.in
? print-conf
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/ximian-setup-tools/backends/ChangeLog,v
retrieving revision 1.122
diff -u -r1.122 ChangeLog
--- ChangeLog	2001/03/18 00:34:16	1.122
+++ ChangeLog	2001/03/19 20:26:50
@@ -1,3 +1,7 @@
+2001-03-19  Michael Meeks  <michael@ximian.com>
+
+	* Makefile.am: Clean.
+
 2001-03-17  Hans Petter Jansson  <hpj@ximian.com>
 
 	* Added gettext.pl.in by Kenneth Christiansen.
Index: Makefile.am
===================================================================
RCS file: /cvs/gnome/ximian-setup-tools/backends/Makefile.am,v
retrieving revision 1.25
diff -u -r1.25 Makefile.am
--- Makefile.am	2001/03/18 00:34:16	1.25
+++ Makefile.am	2001/03/19 20:26:50
@@ -1,51 +1,42 @@
 backends = \
-disks-conf \
-memory-conf \
-network-conf \
-shares-conf \
-time-conf \
-users-conf \
-boot-conf
+	disks-conf \
+	memory-conf \
+	network-conf \
+	shares-conf \
+	time-conf \
+	users-conf \
+	boot-conf
 
+PERLBODY = \
+	gettext.pl.in \
+	parse.pl.in \
+	replace.pl.in \
+	file.pl.in \
+	general.pl.in \
+	platform.pl.in \
+	report.pl.in \
+	xml.pl.in \
+	service.pl.in \
+	util.pl.in \
+	network.pl.in \
+	boot.pl.in \
+	debug.pl.in
+
 perl_libs = \
-gettext.pl \
-parse.pl \
-replace.pl \
-file.pl \
-general.pl \
-platform.pl \
-report.pl \
-xml.pl \
-service.pl \
-util.pl \
-network.pl \
-boot.pl \
-debug.pl
+	$(PERLBODY:.pl.in=.pl)
 
 scripts_SCRIPTS = $(backends) $(perl_libs) guess_system.sh
 
 EXTRA_DIST = \
-gettext.pl.in \
-parse.pl.in \
-replace.pl.in \
-file.pl.in \
-general.pl.in \
-platform.pl.in \
-report.pl.in \
-xml.pl.in \
-service.pl.in \
-util.pl.in \
-network.pl.in \
-boot.pl.in \
-debug.pl.in \
-disks-conf.in \
-memory-conf.in \
-network-conf.in \
-shares-conf.in \
-time-conf.in \
-users-conf.in \
-boot-conf.in \
-guess_system.sh
+	$(PERLBODY) \
+	disks-conf.in \
+	memory-conf.in \
+	network-conf.in \
+	shares-conf.in \
+	time-conf.in \
+	users-conf.in \
+	boot-conf.in \
+	guess_system.sh
 
 CLEANFILES = $(backends) $(perl_libs)
 
Index: xml.pl.in
===================================================================
RCS file: /cvs/gnome/ximian-setup-tools/backends/xml.pl.in,v
retrieving revision 1.21
diff -u -r1.21 xml.pl.in
--- xml.pl.in	2001/03/13 19:15:52	1.21
+++ xml.pl.in	2001/03/19 20:26:51
@@ -110,7 +110,8 @@
 sub xst_xml_print_line
 {
   my $line;
-  ($line = $_[0]) =~ tr/\n//d;
+  $line = join ("", @_);
+  $line =~ tr/\n//d;
 
   &xst_xml_print_indent ();
   &xst_xml_print_string ($line . "\n");


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]