summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2010-07-05 22:22:05 +0000
committerMichał Górny <mgorny@gentoo.org>2010-07-05 22:22:05 +0000
commitc769ca2b9e092958bbf2f59f08215c89fdac3dd2 (patch)
treef97cd715ffabb910ed12c4f30522d268076feaf3 /x11-misc/kdelnk2wmaker/files
parentsys-fs/aufs: Drop leftover patch. (diff)
downloadsunrise-c769ca2b9e092958bbf2f59f08215c89fdac3dd2.tar.gz
sunrise-c769ca2b9e092958bbf2f59f08215c89fdac3dd2.tar.bz2
sunrise-c769ca2b9e092958bbf2f59f08215c89fdac3dd2.zip
x11-misc/kdelnk2wmaker: Update HOMEPAGE and SRC_URI. Cleanup.
svn path=/sunrise/; revision=10916
Diffstat (limited to 'x11-misc/kdelnk2wmaker/files')
-rw-r--r--x11-misc/kdelnk2wmaker/files/kdelnk2wmaker-Makefile-fixes.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/x11-misc/kdelnk2wmaker/files/kdelnk2wmaker-Makefile-fixes.patch b/x11-misc/kdelnk2wmaker/files/kdelnk2wmaker-Makefile-fixes.patch
new file mode 100644
index 000000000..ebb80081a
--- /dev/null
+++ b/x11-misc/kdelnk2wmaker/files/kdelnk2wmaker-Makefile-fixes.patch
@@ -0,0 +1,23 @@
+From f4ee4f35be9750b608180dacd932d5d9744d8f29 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <gentoo@mgorny.alt.pl>
+Date: Mon, 5 Jul 2010 21:56:48 +0200
+Subject: [PATCH] Fix CC argument passing order, use LDFLAGS, do not strip.
+
+---
+ Makefile | 5 ++---
+ 1 files changed, 2 insertions(+), 3 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index c9a0ad1..f521764 100644
+--- a/Makefile
++++ b/Makefile
+@@ -17 +17 @@ CC=gcc
+- $(CC) -Wall -c -o $@ $(CFLAGS) $<
++ $(CC) -Wall $(CFLAGS) -c -o $@ $<
+@@ -22,2 +22 @@ all: $(COBJS)
+- $(CC) -o kdelnk2wmaker $(COBJS)
+- @strip kdelnk2wmaker
++ $(CC) $(LDFLAGS) -o kdelnk2wmaker $(COBJS)
+--
+1.7.1.1
+