swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40
Raw File
Tip revision: 768187890c2709bf2ff06818f40e1cdc79bd44b0 authored by Elliot Saba on 20 August 2014, 20:29:36 UTC
Tag 0.3.0 final
Tip revision: 7681878
utf8proc_Makefile.patch
--- Makefile.old	2014-01-23 20:06:09.000000000 -0800
+++ Makefile	2014-01-23 20:06:11.000000000 -0800
@@ -5,6 +5,7 @@
 
 cflags = -O2 -std=c99 -pedantic -Wall -fpic $(CFLAGS)
 cc = $(CC) $(cflags)
+AR = ar
 
 
 # meta targets
@@ -31,7 +32,7 @@
 
 libutf8proc.a: utf8proc.o
 	rm -f libutf8proc.a
-	ar rs libutf8proc.a utf8proc.o
+	$(AR) rs libutf8proc.a utf8proc.o
 
 libutf8proc.so: utf8proc.o
 	$(cc) -shared -o libutf8proc.so utf8proc.o
back to top