From 850d726e7eee538545e76da2103de2eb92f852dd Mon Sep 17 00:00:00 2001 From: kloczek Date: Tue, 6 Nov 2001 10:33:17 +0000 Subject: [PATCH] - remove silly stripping, - use $(CC) instead directly gcc. Changed files: axel-Makefile.patch -> 1.1 --- axel-Makefile.patch | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 axel-Makefile.patch diff --git a/axel-Makefile.patch b/axel-Makefile.patch new file mode 100644 index 0000000..5eda4e8 --- /dev/null +++ b/axel-Makefile.patch @@ -0,0 +1,31 @@ +--- axel-0.98/Makefile.orig Sat Nov 3 19:28:39 2001 ++++ axel-0.98/Makefile Tue Nov 6 11:32:21 2001 +@@ -12,6 +12,8 @@ + + include Makefile.settings + ++CC=gcc ++ + ifdef DEBUG + CFLAGS = -DDEBUG -g + else +@@ -60,17 +62,10 @@ + ### MAIN PROGRAM + + axel: axel.o conf.o conn.o ftp.o http.o search.o tcp.o text.o +- gcc axel.o conf.o conn.o ftp.o http.o search.o tcp.o text.o -o axel $(LFLAGS) +-ifndef DEBUG +-ifeq ($(HOSTTYPE),Darwin) +- strip axel +-else +- strip -R .comment -R .note -s axel +-endif +-endif ++ $(CC) axel.o conf.o conn.o ftp.o http.o search.o tcp.o text.o -o axel $(LFLAGS) + + .c.o: +- gcc -c $*.c -o $*.o -Wall $(CFLAGS) ++ $(CC) -c $*.c -o $*.o -Wall $(CFLAGS) + + install-bin: + mkdir -p $(DESTDIR)$(BINDIR)/ -- 2.44.0