Author: pebender
Date: Wed Feb 4 08:46:08 2009
New Revision: 4355
Added:
trunk/gar-minimyth/script/disk/e2fsprogs/files/e2fsprogs-1.41.4-chmod.patch
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/disk/e2fsprogs/Makefile
trunk/gar-minimyth/script/disk/e2fsprogs/checksums
Log:
- Patched disk/e2fsprogs so that chmod's during build are more likely to
work and less likely to result in unnecessarily fatal build errors.
Modified: trunk/gar-minimyth/html/minimyth/document-changelog.txt
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-changelog.txt (original)
+++ trunk/gar-minimyth/html/minimyth/document-changelog.txt Wed Feb 4
08:46:08 2009
@@ -27,6 +27,10 @@
Modified ALSA
- Added a quirk for the ASUS M3N78-VM motherboard.
+Fixed build system
+ - Patched disk/e2fsprogs so that chmod's during build are more likely
to
+ work and less likely to result in unnecessarily fatal build errors.
+
Updated packages
Updated disk/hdparm.
Updated kernel-2.6.27/linux.
Modified: trunk/gar-minimyth/script/disk/e2fsprogs/Makefile
==============================================================================
--- trunk/gar-minimyth/script/disk/e2fsprogs/Makefile (original)
+++ trunk/gar-minimyth/script/disk/e2fsprogs/Makefile Wed Feb 4 08:46:08
2009
@@ -3,7 +3,7 @@
CATEGORIES = disk
MASTER_SITES = http://easynews.dl.sourceforge.net/sourceforge/$(GARNAME)/
DISTFILES = $(DISTNAME).tar.gz
-PATCHFILES = $(DISTNAME)-verbose.patch
+PATCHFILES = $(DISTNAME)-chmod.patch $(DISTNAME)-verbose.patch
LICENSE = GPL2/LGPL2
DESCRIPTION =
Modified: trunk/gar-minimyth/script/disk/e2fsprogs/checksums
==============================================================================
--- trunk/gar-minimyth/script/disk/e2fsprogs/checksums (original)
+++ trunk/gar-minimyth/script/disk/e2fsprogs/checksums Wed Feb 4 08:46:08
2009
@@ -1,2 +1,3 @@
59033388df36987d2b9c9bbf7e19bd57 download/e2fsprogs-1.41.4.tar.gz
+8c947fc5f47c4250ce70ada5f9b09f81 download/e2fsprogs-1.41.4-chmod.patch
18d198436ef14714aaba50d336d19c48 download/e2fsprogs-1.41.4-verbose.patch
Added:
trunk/gar-minimyth/script/disk/e2fsprogs/files/e2fsprogs-1.41.4-chmod.patch
==============================================================================
--- (empty file)
+++
trunk/gar-minimyth/script/disk/e2fsprogs/files/e2fsprogs-1.41.4-chmod.patch
Wed Feb 4 08:46:08 2009
@@ -0,0 +1,31 @@
+diff -Naur e2fsprogs-1.41.4-old/lib/et/compile_et.sh.in
e2fsprogs-1.41.4-new/lib/et/compile_et.sh.in
+--- e2fsprogs-1.41.4-old/lib/et/compile_et.sh.in 2007-06-30
05:58:34.000000000 -0700
++++ e2fsprogs-1.41.4-new/lib/et/compile_et.sh.in 2009-02-04
08:39:51.000000000 -0800
+@@ -51,12 +51,14 @@
+ rm -f ${BASE}.h.$$
+ else
+ mv -f ${BASE}.h.$$ ${BASE}.h
+- chmod -w ${BASE}.h
++ chmod a-w ${BASE}.h
+ fi
+ $AWK
-f "${DIR}/et_c.awk" "outfile=${BASE}.c.$$" "outfn=${BASE}.c" "$ROOT.et"
+ if test -f ${BASE}.c && cmp -s ${BASE}.c.$$ ${BASE}.c ; then
+ rm -f ${BASE}.c.$$
+ else
+ mv -f ${BASE}.c.$$ ${BASE}.c
+- chmod -w ${BASE}.c
++ chmod a-w ${BASE}.c
+ fi
++
++exit 0
+diff -Naur e2fsprogs-1.41.4-old/lib/ss/mk_cmds.sh.in
e2fsprogs-1.41.4-new/lib/ss/mk_cmds.sh.in
+--- e2fsprogs-1.41.4-old/lib/ss/mk_cmds.sh.in 2007-07-07
20:16:39.000000000 -0700
++++ e2fsprogs-1.41.4-new/lib/ss/mk_cmds.sh.in 2009-02-04
08:39:05.000000000 -0800
+@@ -57,6 +57,6 @@
+ else
+ rm -f "${BASE}.c"
+ mv -f "${TMP}" "${BASE}.c"
+- chmod -w "${BASE}.c"
++ chmod a-w "${BASE}.c"
+ exit 0
+ fi
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"minimyth-commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/minimyth-commits?hl=en
-~----------~----~----~----~------~----~------~--~---