You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
978 B
46 lines
978 B
8 years ago
|
--- ../cache/alpine-2.20/imap/src/osdep/unix/Makefile 2015-01-12 05:12:25.505178442 +0000
|
||
|
+++ ./imap/src/osdep/unix/Makefile 2016-12-11 07:08:54.821695452 +0000
|
||
|
@@ -131,13 +131,8 @@
|
||
9 years ago
|
|
||
|
|
||
8 years ago
|
# Commands possibly overriden by the individual port
|
||
|
-
|
||
9 years ago
|
-ARRC=ar rc
|
||
|
-CC=cc
|
||
|
LN=ln -s
|
||
|
-RANLIB=ranlib
|
||
8 years ago
|
-
|
||
|
-
|
||
|
+AARC="ar rc"
|
||
|
# Standard distribution build parameters
|
||
9 years ago
|
|
||
8 years ago
|
DEFAULTAUTHENTICATORS=ext md5 pla log
|
||
|
@@ -513,8 +508,10 @@
|
||
|
SPOOLDIR=/var/spool \
|
||
|
ACTIVEFILE=/var/lib/news/active \
|
||
|
RSHPATH=/usr/bin/rsh \
|
||
|
- BASECFLAGS="$(GCCCFLAGS)"
|
||
|
-
|
||
8 years ago
|
+ CC=$(TCC) \
|
||
8 years ago
|
+ BASECFLAGS="$(GCCCFLAGS)" \
|
||
8 years ago
|
+ RANLIB="$(TRANLIB)"
|
||
8 years ago
|
+
|
||
|
lyn: # LynxOS
|
||
|
$(BUILD) `$(CAT) SPECIALS` OS=$@ \
|
||
|
CRXTYPE=nfs \
|
||
|
@@ -869,8 +866,13 @@
|
||
|
all: $(ARCHIVE)
|
||
9 years ago
|
|
||
8 years ago
|
$(ARCHIVE): $(BINARIES)
|
||
|
- sh -c '$(RM) $(ARCHIVE) || true'
|
||
|
+ rm -rf client-a
|
||
|
+ { echo -n 'ar rc '; cat ARCHIVE; } >ARCHIVE.new
|
||
|
+ rm ARCHIVE
|
||
|
+ mv ARCHIVE.new ARCHIVE
|
||
|
+ chmod +x ARCHIVE
|
||
|
@$(CAT) ./ARCHIVE
|
||
|
+
|
||
|
@$(SH) ./ARCHIVE
|
||
|
|
||
|
.c.o:
|