1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-26 21:17:40 +00:00
freebsd-ports/net/sharity-light/files/patch-aa
Chris Piazza 9084228b18 Unbreak, ARCH was being passed through to the Makefiles
resulting in cc -I... i386 -c ... etc being used.

Noticed by:	bento.freebsd.org
1999-07-24 06:09:46 +00:00

19 lines
451 B
Plaintext

--- nfs/Makefile.orig Sat Jul 24 23:05:05 1999
+++ nfs/Makefile Sat Jul 24 23:05:17 1999
@@ -16,13 +16,13 @@
all: nfs.o
-COMPILE = $(CC) $(ARCH) -c $(INCLUDES) $(CFLAGS)
+COMPILE = $(CC) -c $(INCLUDES) $(CFLAGS)
.c.o:
$(COMPILE) $<
nfs.o: $(OFILES)
- $(LD) $(ARCH) -r -o $@ $(OFILES)
+ $(LD) -r -o $@ $(OFILES)
# the purpose of the sed "s/char data/long long data/" hack is to ensure
# proper alignment. [Marc Boucher <marc@CAM.ORG>]