diff options
author | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
commit | f96441b9faf769c9ecdd4d338b605ea3d0cc4010 (patch) | |
tree | edb17ec2c4ea13c5acb1c7350957a249a820e28d /totem | |
parent | b6588aa6851fb220cedc387d21c51513ef8d67f4 (diff) |
Disable bk EOLN_NATIVE conversions on all files in packages FILESPATHs, to prevent it screwing up patches.
BKrev: 4190111fA4MuVozAqwE7xOSL9fr-TA
Diffstat (limited to 'totem')
-rw-r--r-- | totem/totem-0.99.15/include.patch | 11 | ||||
-rw-r--r-- | totem/totem-0.99.15/omf.patch | 13 |
2 files changed, 24 insertions, 0 deletions
diff --git a/totem/totem-0.99.15/include.patch b/totem/totem-0.99.15/include.patch index e69de29bb2..6e99c4e21e 100644 --- a/totem/totem-0.99.15/include.patch +++ b/totem/totem-0.99.15/include.patch @@ -0,0 +1,11 @@ +--- totem-0.99.15/src/video-utils.c 2004-07-03 16:54:31.000000000 -0700 ++++ totem-0.99.15.new/src/video-utils.c 2004-08-04 11:03:30.822669856 -0700 +@@ -4,7 +4,7 @@ + #include "video-utils.h" + + #include <glib/gi18n.h> +-#include <libintl.h> ++/* #include <libintl.h> */ + + #include <gdk/gdk.h> + #include <gdk/gdkx.h> diff --git a/totem/totem-0.99.15/omf.patch b/totem/totem-0.99.15/omf.patch index e69de29bb2..a889db10ba 100644 --- a/totem/totem-0.99.15/omf.patch +++ b/totem/totem-0.99.15/omf.patch @@ -0,0 +1,13 @@ +--- totem-0.99.12/omf.make 2003-11-08 18:04:41.000000000 -0700 ++++ totem-0.99.12.new/omf.make 2004-06-30 09:39:58.765495480 -0700 +@@ -41,7 +41,9 @@ + install-data-hook-omf: + $(mkinstalldirs) $(DESTDIR)$(omf_dest_dir) + for file in $(omffile); do \ +- $(INSTALL_DATA) $$file.out $(DESTDIR)$(omf_dest_dir)/$$file; \ ++ if [ -f $$file.out ]; then \ ++ $(INSTALL_DATA) $$file.out $(DESTDIR)$(omf_dest_dir)/$$file; \ ++ fi; \ + done + -scrollkeeper-update -o $(DESTDIR)$(omf_dest_dir) + |