summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-gfx/splashutils/files/splashutils-gentoo-0.1.14-stat.patch')
-rw-r--r--media-gfx/splashutils/files/splashutils-gentoo-0.1.14-stat.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/media-gfx/splashutils/files/splashutils-gentoo-0.1.14-stat.patch b/media-gfx/splashutils/files/splashutils-gentoo-0.1.14-stat.patch
deleted file mode 100644
index 6e8ef66a1426..000000000000
--- a/media-gfx/splashutils/files/splashutils-gentoo-0.1.14-stat.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -Naurp splashutils-gentoo-0.1.14-orig/splash-functions.sh splashutils-gentoo-0.1.14/splash-functions.sh
---- splashutils-gentoo-0.1.14-orig/splash-functions.sh 2007-04-09 12:45:01.000000000 +0200
-+++ splashutils-gentoo-0.1.14/splash-functions.sh 2007-04-09 12:46:32.000000000 +0200
-@@ -207,7 +207,7 @@ splash_cache_prep() {
-
- mount -n --move "${spl_tmpdir}" "${spl_cachedir}"
-
-- h=$(stat -c '%y' ${spl_cachedir}/deptree 2>/dev/null)
-+ h=$(ls -ld --full-time ${spl_cachedir}/deptree | cut -f6,7,8 -d' ' 2>/dev/null)
-
- # Point depscan.sh to our cachedir
- spl_cache_depscan="yes" /sbin/depscan.sh -u
-@@ -226,8 +226,8 @@ splash_cache_prep() {
- local lastlev timestamp
- { read lastlev; read timestamp; } < ${spl_cachedir}/levels
- if [[ "${lastlev}" != "${BOOTLEVEL}/${DEFAULTLEVEL}" || \
-- "${timestamp}" != "$(stat -c '%y' /etc/runlevels/${BOOTLEVEL})/$(stat -c '%y' /etc/runlevels/${DEFAULTLEVEL})" || \
-- "$(stat -c '%y' ${spl_cachedir}/deptree)" != "${h}" ]]; then
-+ "${timestamp}" != "$(ls -ld --full-time /etc/runlevels/${BOOTLEVEL} | cut -f6,7,8 -d' ')/$(ls -ld --full-time /etc/runlevels/${DEFAULTLEVEL} | cut -f6,7,8 -d' ')" || \
-+ "$(ls -ld --full-time ${spl_cachedir}/deptree | cut -f6,7,8 -d' ')" != "${h}" ]]; then
- echo $(splash_svclist_update "start") > ${spl_cachedir}/svcs_start
- fi
- fi