aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mandriva.org>2009-11-30 18:28:33 +0000
committerPascal Terjan <pterjan@mandriva.org>2009-11-30 18:28:33 +0000
commit3df88d5aac1b924d0b37864c85e19e3378c0b382 (patch)
tree208111a0dcd688ab07699c2e15e1336238d126d9
parenta641ab717a188a04d9fe4b10372bb4e22e118994 (diff)
downloadbootsplash-3df88d5aac1b924d0b37864c85e19e3378c0b382.tar
bootsplash-3df88d5aac1b924d0b37864c85e19e3378c0b382.tar.gz
bootsplash-3df88d5aac1b924d0b37864c85e19e3378c0b382.tar.bz2
bootsplash-3df88d5aac1b924d0b37864c85e19e3378c0b382.tar.xz
bootsplash-3df88d5aac1b924d0b37864c85e19e3378c0b382.zip
Do not derefence symlinks, we copy the target too
-rw-r--r--Makefile2
-rwxr-xr-xscripts/make-boot-splash-raw2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1266e74..a16d269 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
NAME=bootsplash
-VERSION := 3.3.3
+VERSION := 3.3.4
SUBDIRS=scripts
FILES=$(SUBDIRS) Makefile ChangeLog README
diff --git a/scripts/make-boot-splash-raw b/scripts/make-boot-splash-raw
index 26dda34..2b3c034 100755
--- a/scripts/make-boot-splash-raw
+++ b/scripts/make-boot-splash-raw
@@ -31,7 +31,7 @@ if `/bin/zcat $initrd_file 2> /dev/null | /bin/cpio -t &> /dev/null`; then
sed -e 's,^\.$,,' | tr '\n' '|' | sed -e 's/|$//'` > $tmp_dir/initrd
/bin/find . -print | sed -e 's,\./,,g' | sed -e 's,^\.$,,' | \
- sort -u | cpio -o -c -L --quiet -O $tmp_dir/initrd --append 2>/dev/null
+ sort -u | cpio -o -c --quiet -O $tmp_dir/initrd --append 2>/dev/null
fi
gzip -9 -c $tmp_dir/initrd > $initrd_file
rm -rf $tmp_dir