diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-08-28 21:47:44 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-08-28 21:47:44 +0200 |
commit | 0a3d29e18ca731cafed7155b73a92a8f2756ca27 (patch) | |
tree | 01c464d54b6d00a3334bf4b72c4c66a2c6ffc859 /package/bitlbee/patches/patch-lib_Makefile | |
parent | 58e2e795851d40c1e298354a264aa03eca1717e8 (diff) |
make allmodconfig round for lemote yeelong target
Diffstat (limited to 'package/bitlbee/patches/patch-lib_Makefile')
-rw-r--r-- | package/bitlbee/patches/patch-lib_Makefile | 24 |
1 files changed, 24 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..e43ddb2a0 --- /dev/null +++ b/package/bitlbee/patches/patch-lib_Makefile @@ -0,0 +1,24 @@ +--- bitlbee-1.2.3.orig/lib/Makefile 2008-09-06 14:33:13.000000000 +0200 ++++ bitlbee-1.2.3/lib/Makefile 2009-08-28 11:12:29.546939473 +0200 +@@ -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 += -r + + # [SH] Phony targets + all: lib.o +@@ -32,10 +32,10 @@ distclean: clean $(subdirs) + + lib.o: $(objects) $(subdirs) + @echo '*' Linking lib.o +- @$(LD) $(LFLAGS) $(objects) -o lib.o ++ $(CC) -shared $(LDFLAGS) $(objects) -o lib.o + + $(objects): ../Makefile.settings Makefile + + $(objects): %.o: %.c + @echo '*' Compiling $< +- @$(CC) -c $(CFLAGS) $< -o $@ ++ $(CC) -c $(CFLAGS) $< -o $@ |