Skip to content
This repository was archived by the owner on Jan 26, 2026. It is now read-only.

Commit c06dfec

Browse files
committed
Use Makefile compiler for minizip-test target.
1 parent 88ec246 commit c06dfec

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ zconf: $(SRCDIR)zconf.h.in
360360
cp -p $(SRCDIR)zconf.h.in zconf.h
361361

362362
minizip-test: static
363-
cd contrib/minizip && { CFLAGS="$(CFLAGS)" $(MAKE) test ; cd ../.. ; }
363+
cd contrib/minizip && { CC="$(CC)" CFLAGS="$(CFLAGS)" $(MAKE) test ; cd ../.. ; }
364364

365365
minizip-clean:
366366
cd contrib/minizip && { $(MAKE) clean ; cd ../.. ; }

contrib/minizip/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CC=cc
1+
CC?=cc
22
CFLAGS := $(CFLAGS) -O -I../..
33

44
UNZ_OBJS = miniunz.o unzip.o ioapi.o ../../libz.a

0 commit comments

Comments
 (0)