Hi,
Here is a tiny patch to slightly upgrade the version of perl that is installed.
When trying to build on Debian Lenny, I
could not get 5.8.8 to build properly. This happens to be a bug in the perl
build scripts if /bin/sh happens to be dash
rather than bash.
http://www.nntp.perl.org/group/perl.perl5.porters/2007/12/msg131395.html 5.8.9
has this bug fixed and
should be a safe upgrade otherwise.
The other issue on Lenny is that genisoimage has replaced mkisofs. Currently,
this patch just has you uncomment the
appropriate line at the top to define the variable correctly. It would be
prettier if this was autodetected.
Allan.
Index: Makefile
===================================================================
RCS file: /cvsroot/unattended/unattended/linuxboot/Makefile,v
retrieving revision 1.198
diff -u -r1.198 Makefile
--- Makefile 5 Feb 2009 22:29:07 -0000 1.198
+++ Makefile 6 Feb 2009 07:32:47 -0000
@@ -23,7 +23,7 @@
parted=parted-1.6.22
pciutils=pciutils-3.0.3
#for gcc 4.2 and up use per-5.10.0
-perl=perl-5.8.8
+perl=perl-5.8.9
# perl-ldap aka. Net::LDAP
perl-ldap=perl-ldap-0.39
perl-xml-parser=XML-Parser-2.36
@@ -48,6 +48,11 @@
CC=gcc
+# uncomment one of the following two lines depending on what the binary to make iso
+# images on your system is called.
+#mkisofs=mkisofs
+mkisofs=genisoimage
+
# Macro to generate rule for copying single file
copy_file= \
$(2) : $(1) ; \
@@ -827,7 +832,7 @@
linuxboot.iso: iso/isolinux/bzImage iso/isolinux/initrd \
iso/isolinux/isolinux.cfg iso/isolinux/isolinux.bin
- mkisofs -quiet -o $...@.tmp -m CVS \
+ $(mkisofs) -quiet -o $...@.tmp -m CVS \
-b isolinux/isolinux.bin -c isolinux/boot.cat \
-no-emul-boot -boot-load-size 4 -boot-info-table \
iso > /dev/null
------------------------------------------------------------------------------
Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM)
software. With Adobe AIR, Ajax developers can use existing skills and code to
build responsive, highly engaging applications that combine the power of local
resources and data with the reach of the web. Download the Adobe AIR SDK and
Ajax docs to start building applications today-http://p.sf.net/sfu/adobe-com
_______________________________________________
unattended-devel mailing list
unattended-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-devel