summaryrefslogtreecommitdiff
path: root/databases/redis/files/patch-deps::linenoise::Makefile
blob: de4181edbd6c4a926f9c361fd741f5f9439e284c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- deps/linenoise/Makefile.orig	2012-02-22 17:23:43.000000000 +0400
+++ deps/linenoise/Makefile	2012-02-24 16:48:55.000000000 +0400
@@ -1,10 +1,10 @@
 linenoise_example: linenoise.h linenoise.c
 
 linenoise_example: linenoise.o example.o
-	$(CC) $(ARCH) -Wall -W -Os -g -o linenoise_example linenoise.o example.o
+	$(CC) $(CFLAGS) -o linenoise_example linenoise.o example.o
 
 .c.o:
-	$(CC) $(ARCH) -c -Wall -W -Os -g $<
+	$(CC) $(CFLAGS) -c $<
 
 clean:
 	rm -f linenoise_example *.o