From 27e9d3c222b63deb7959c682fb58efa1eb446a63 Mon Sep 17 00:00:00 2001 From: Alejandro Mery Date: Sun, 24 Feb 2008 21:56:14 -0300 Subject: [PATCH] Fixed fbset to not install samples fb.modes ending with .orig, because they are generated when patching --- base/fbset/fbset.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/fbset/fbset.conf b/base/fbset/fbset.conf index 62ea70f1f..56fc81246 100644 --- a/base/fbset/fbset.conf +++ b/base/fbset/fbset.conf @@ -16,7 +16,7 @@ fbset_postmake() { cp -fv modeline2fb $root/sbin cp -fv etc/fb.modes.ATI $root$sysconfdir/fb.modes - cp -fv etc/fb.modes.* $root$docdir + cp -fv $( ls -1 etc/fb.modes.* | grep -v '\.orig$' ) $root$docdir } hook_add postmake 5 'fbset_postmake'