Commits
Ryan Schmidt authored and Perry E. Metzger committed 35ca2f6ffc7
1 + | Use cp -pPR instead of cp -a to fix install on Mac OS X Leopard and earlier. |
2 + | https://github.com/redis/hiredis/pull/596 |
3 + | --- Makefile.orig 2015-09-16 05:25:02.000000000 -0500 |
4 + | +++ Makefile 2018-05-14 17:56:18.000000000 -0500 |
5 + | |
6 + | ifeq ($(uname_S),SunOS) |
7 + | REAL_LDFLAGS+= -ldl -lnsl -lsocket |
8 + | DYLIB_MAKE_CMD=$(CC) -G -o $(DYLIBNAME) -h $(DYLIB_MINOR_NAME) $(LDFLAGS) |
9 + | - INSTALL= cp -r |
10 + | endif |
11 + | ifeq ($(uname_S),Darwin) |
12 + | DYLIBSUFFIX=dylib |
13 + | |
14 + | dep: |
15 + | $(CC) -MM *.c |
16 + | |
17 + | -ifeq ($(uname_S),SunOS) |
18 + | - INSTALL?= cp -r |
19 + | -endif |
20 + | - |
21 + | -INSTALL?= cp -a |
22 + | +INSTALL?= cp -pPR |
23 + | |
24 + | $(PKGCONFNAME): hiredis.h |
25 + | @echo "Generating $@ for pkgconfig..." |