diff options
Diffstat (limited to 'net-misc/axel/files/axel-2.4-buildsystem.patch')
-rw-r--r-- | net-misc/axel/files/axel-2.4-buildsystem.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/net-misc/axel/files/axel-2.4-buildsystem.patch b/net-misc/axel/files/axel-2.4-buildsystem.patch new file mode 100644 index 000000000000..a1571f0fc576 --- /dev/null +++ b/net-misc/axel/files/axel-2.4-buildsystem.patch @@ -0,0 +1,23 @@ + Makefile | 4 ++-- + 1 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/Makefile b/Makefile +index 1c3863a..b43fcff 100644 +--- a/Makefile ++++ b/Makefile +@@ -51,13 +51,13 @@ uninstall-etc: + ### MAIN PROGRAM + + $(OUTFILE): axel.o conf.o conn.o ftp.o http.o search.o tcp.o text.o +- $(CC) *.o -o $(OUTFILE) $(LFLAGS) ++ $(CC) $(LDFLAGS) *.o -o $(OUTFILE) $(LFLAGS) + ifndef DEBUG + -$(STRIP) $(OUTFILE) + endif + + .c.o: +- $(CC) -c $*.c -o $*.o -Wall $(CFLAGS) ++ $(CC) $(CPPFLAGS) -c $*.c -o $*.o -Wall $(CFLAGS) + + install-bin: + mkdir -p $(DESTDIR)$(BINDIR)/ |