aboutsummaryrefslogtreecommitdiffhomepage
path: root/debian/patches/cross.patch
blob: 4ce10a2b781ca963a2377a20ae6d8e8ab876e24d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Index: zxcvbn-c-2.3+dfsg/makefile
===================================================================
--- zxcvbn-c-2.3+dfsg.orig/makefile
+++ zxcvbn-c-2.3+dfsg/makefile
@@ -5,6 +5,7 @@
 CC ?= gcc
 AR ?= ar
 CXX ?= g++
+CXX_FOR_BUILD ?= $(CXX)
 
 # need zxcvbn.h prior to package installation
 CPPFLAGS += -I.
@@ -57,7 +58,7 @@
 	./dictgen -b -o zxcvbn.dict -h dict-crc.h $(WORDS)
 
 dictgen: dict-generate.cpp makefile
-	$(CXX) $(CPPFLAGS) -std=c++11 $(CXXFLAGS) \
+	$(CXX_FOR_BUILD) $(CPPFLAGS) -std=c++11 $(CXXFLAGS) \
 		-o dictgen dict-generate.cpp $(LDFLAGS)
 
 test-c++inline: test.c zxcvbn-c++inline.o