diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> | 2010-07-05 19:42:56 +0200 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> | 2010-07-06 00:21:14 +0200 |
commit | cd57b12e081713178b90ef26e78d83335c740285 (patch) | |
tree | 780431d870d747115201c067ba6972555a0b9777 /recipes/supertux/files | |
parent | d1f40ae1d1c9c168688eb8882e1ef200efbed399 (diff) |
supertux: fix installation(will not overwrite just-created) and bump PR
data/Makefile.am has some duplicated entries which causes that kind of failure:
...usr/bin/install: will not overwrite just-created
`.../image/usr/share/supertux/sounds/bigjump.wav' with `sounds/bigjump.wav'
So in the patch we just remove the duplicated entries
Diffstat (limited to 'recipes/supertux/files')
-rw-r--r-- | recipes/supertux/files/install-no-overwrite.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/recipes/supertux/files/install-no-overwrite.patch b/recipes/supertux/files/install-no-overwrite.patch new file mode 100644 index 0000000000..41e448663b --- /dev/null +++ b/recipes/supertux/files/install-no-overwrite.patch @@ -0,0 +1,13 @@ +Index: supertux-0.1.3/data/Makefile.am +=================================================================== +--- supertux-0.1.3.orig/data/Makefile.am 2010-07-04 22:53:15.209949507 +0200 ++++ supertux-0.1.3/data/Makefile.am 2010-07-04 22:53:51.490637559 +0200 +@@ -2,8 +2,6 @@ + supertux.strf \ + $(wildcard *.txt) \ + CREDITS \ +- $(wildcard sounds/*.wav) \ +- images/icon.xpm \ + $(wildcard images/*.png) \ + $(wildcard images/*.xpm) \ + $(wildcard images/background/*.png) \ |