diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-03-17 14:47:17 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-03-17 14:47:17 +0100 |
commit | 3c8b938f0391f377d91a62236dfe4a3744f81185 (patch) | |
tree | dd2bc81b664c7a134f0c35e97dcfcedcbcfa853a /package/bitlbee/patches/patch-lib_Makefile | |
parent | a5ad35245264679bda4e2747c6e8c0e77eda7fe3 (diff) | |
parent | cc6ab14ecc81731224aaff814414c55c3ced195b (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/bitlbee/patches/patch-lib_Makefile')
-rw-r--r-- | package/bitlbee/patches/patch-lib_Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package/bitlbee/patches/patch-lib_Makefile b/package/bitlbee/patches/patch-lib_Makefile new file mode 100644 index 000000000..8fc2484cc --- /dev/null +++ b/package/bitlbee/patches/patch-lib_Makefile @@ -0,0 +1,20 @@ +--- bitlbee-1.2.4.orig/lib/Makefile 2009-10-17 17:26:46.000000000 +0200 ++++ bitlbee-1.2.4/lib/Makefile 2010-03-07 19:58:49.626028152 +0100 +@@ -12,7 +12,7 @@ + objects = arc.o base64.o $(EVENT_HANDLER) http_client.o ini.o md5.o misc.o proxy.o sha1.o $(SSL_CLIENT) url.o xmltree.o + + CFLAGS += -Wall +-LFLAGS += -r ++LFLAGS += -Wl,-r -nostdlib + + # [SH] Phony targets + all: lib.o +@@ -32,7 +32,7 @@ distclean: clean $(subdirs) + + lib.o: $(objects) $(subdirs) + @echo '*' Linking lib.o +- @$(LD) $(LFLAGS) $(objects) -o lib.o ++ @$(CC) $(LFLAGS) $(objects) -o lib.o + + $(objects): ../Makefile.settings Makefile + |