1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
From: Helmut Grohne <helmut@subdivi.de>
Date: Thu, 21 Jun 2018 06:18:54 +0200
X-Dgit-Generated: 1.8-4 2924abb2960066f2c360aa57201826a654e154aa
Subject: clit18/Makefile: Make one plain gcc call substitutable.
(Closes: #901987)
---
--- convlit-1.8.orig/clit18/Makefile
+++ convlit-1.8/clit18/Makefile
@@ -8,5 +8,5 @@ clean:
rm -f *.o clit
clit: clit.o hexdump.o drm5.o explode.o transmute.o display.o utils.o manifest.o ../lib/openclit.a
- gcc $(LDFLAGS) -o clit $^ -ltommath
+ $(CC) $(LDFLAGS) -o clit $^ -ltommath
|