mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
95c8277701
PR #26007 used these to avoid causing a mass rebuild. Now that we know things work, we do that to clean up.
15 lines
392 B
Diff
15 lines
392 B
Diff
--- a/unix/Makefile
|
|
+++ b/unix/Makefile
|
|
@@ -42,9 +42,9 @@
|
|
# such as -DDOSWILD).
|
|
|
|
# UnZip flags
|
|
-CC = cc# try using "gcc" target rather than changing this (CC and LD
|
|
+CC ?= cc# try using "gcc" target rather than changing this (CC and LD
|
|
LD = $(CC)# must match, else "unresolved symbol: ___main" is possible)
|
|
-AS = as
|
|
+AS ?= as
|
|
LOC = $(D_USE_BZ2) $(LOCAL_UNZIP)
|
|
AF = $(LOC)
|
|
CFLAGS = -O
|