summaryrefslogtreecommitdiff
path: root/debian/patches/debian/scriptheader-in-example-makefiles.diff
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/debian/scriptheader-in-example-makefiles.diff')
-rw-r--r--debian/patches/debian/scriptheader-in-example-makefiles.diff157
1 files changed, 0 insertions, 157 deletions
diff --git a/debian/patches/debian/scriptheader-in-example-makefiles.diff b/debian/patches/debian/scriptheader-in-example-makefiles.diff
deleted file mode 100644
index b3969c7..0000000
--- a/debian/patches/debian/scriptheader-in-example-makefiles.diff
+++ /dev/null
@@ -1,157 +0,0 @@
-From: Christoph Egger <Christoph.Egger@gmx.de>
-Subject: [PATCH] debian/scriptheader-in-example-makefiles
-
- All sample Makefiles are executeable but do not have an script header. While
-making them non-executeable is an option, having them as working executeables
-seems more appropriate to me.
-
-Signed-off-by: Christoph Egger <Christoph.Egger@gmx.de>
-
----
- samples/Makefile | 2 ++
- samples/X11/Makefile | 2 ++
- samples/ftp/Makefile | 2 ++
- samples/opengl/Makefile | 2 ++
- samples/pong/Makefile | 2 ++
- samples/post-fx/Makefile | 2 ++
- samples/qt/Makefile | 2 ++
- samples/sockets/Makefile | 2 ++
- samples/sound/Makefile | 2 ++
- samples/sound_capture/Makefile | 2 ++
- samples/voip/Makefile | 2 ++
- samples/window/Makefile | 2 ++
- samples/wxwidgets/Makefile | 2 ++
- 13 files changed, 26 insertions(+)
-
-diff --git a/samples/Makefile b/samples/Makefile
-index 938152a..7080454 100755
---- a/samples/Makefile
-+++ b/samples/Makefile
-@@ -1,3 +1,5 @@
-+#!/usr/bin/make -f
-+
- export DEBUGBUILD = no
- ifeq ($(DEBUGBUILD), yes)
- DEBUGFLAGS = -g -DDEBUG
-diff --git a/samples/X11/Makefile b/samples/X11/Makefile
-index eca4cee..4bbc74e 100755
---- a/samples/X11/Makefile
-+++ b/samples/X11/Makefile
-@@ -1,3 +1,5 @@
-+#!/usr/bin/make -f
-+
- EXEC = X11
- OBJ = X11.o
-
-diff --git a/samples/ftp/Makefile b/samples/ftp/Makefile
-index 8bd25ae..26494b9 100755
---- a/samples/ftp/Makefile
-+++ b/samples/ftp/Makefile
-@@ -1,3 +1,5 @@
-+#!/usr/bin/make -f
-+
- EXEC = ftp
- OBJ = Ftp.o
-
-diff --git a/samples/opengl/Makefile b/samples/opengl/Makefile
-index 42ff5ca..96596af 100755
---- a/samples/opengl/Makefile
-+++ b/samples/opengl/Makefile
-@@ -1,3 +1,5 @@
-+#!/usr/bin/make -f
-+
- EXEC = opengl
- OBJ = OpenGL.o
-
-diff --git a/samples/pong/Makefile b/samples/pong/Makefile
-index 314ace2..dce1be8 100755
---- a/samples/pong/Makefile
-+++ b/samples/pong/Makefile
-@@ -1,3 +1,5 @@
-+#!/usr/bin/make -f
-+
- EXEC = pong
- OBJ = Pong.o
-
-diff --git a/samples/post-fx/Makefile b/samples/post-fx/Makefile
-index 2c25988..30f3dff 100755
---- a/samples/post-fx/Makefile
-+++ b/samples/post-fx/Makefile
-@@ -1,3 +1,5 @@
-+#!/usr/bin/make -f
-+
- EXEC = post-fx
- OBJ = PostFX.o
-
-diff --git a/samples/qt/Makefile b/samples/qt/Makefile
-index 43d09cd..3c48097 100755
---- a/samples/qt/Makefile
-+++ b/samples/qt/Makefile
-@@ -1,3 +1,5 @@
-+#!/usr/bin/make -f
-+
- EXEC = qt
- OBJ = Main.o QSFMLCanvas.o
-
-diff --git a/samples/sockets/Makefile b/samples/sockets/Makefile
-index 6adf020..771673e 100755
---- a/samples/sockets/Makefile
-+++ b/samples/sockets/Makefile
-@@ -1,3 +1,5 @@
-+#!/usr/bin/make -f
-+
- EXEC = sockets
- OBJ = Sockets.o TCP.o UDP.o
-
-diff --git a/samples/sound/Makefile b/samples/sound/Makefile
-index 495c13e..d42b4ba 100755
---- a/samples/sound/Makefile
-+++ b/samples/sound/Makefile
-@@ -1,3 +1,5 @@
-+#!/usr/bin/make -f
-+
- EXEC = sound
- OBJ = Sound.o
-
-diff --git a/samples/sound_capture/Makefile b/samples/sound_capture/Makefile
-index bc49217..0589c4a 100755
---- a/samples/sound_capture/Makefile
-+++ b/samples/sound_capture/Makefile
-@@ -1,3 +1,5 @@
-+#!/usr/bin/make -f
-+
- EXEC = sound_capture
- OBJ = SoundCapture.o
-
-diff --git a/samples/voip/Makefile b/samples/voip/Makefile
-index 1adca4e..a7b92d4 100755
---- a/samples/voip/Makefile
-+++ b/samples/voip/Makefile
-@@ -1,3 +1,5 @@
-+#!/usr/bin/make -f
-+
- EXEC = voip
- OBJ = VoIP.o Client.o Server.o
-
-diff --git a/samples/window/Makefile b/samples/window/Makefile
-index 6aa0abc..12f266b 100755
---- a/samples/window/Makefile
-+++ b/samples/window/Makefile
-@@ -1,3 +1,5 @@
-+#!/usr/bin/make -f
-+
- EXEC = window
- OBJ = Window.o
-
-diff --git a/samples/wxwidgets/Makefile b/samples/wxwidgets/Makefile
-index e6586ec..558e565 100755
---- a/samples/wxwidgets/Makefile
-+++ b/samples/wxwidgets/Makefile
-@@ -1,3 +1,5 @@
-+#!/usr/bin/make -f
-+
- EXEC = wxwidgets
- OBJ = Main.o wxSFMLCanvas.o
-
---
-tg: (6851b4d..) debian/scriptheader-in-example-makefiles (depends on: master)