mirror of
https://gitlab.alpinelinux.org/alpine/abuild.git
synced 2025-02-03 13:12:16 +00:00
abuild-tar.static: fix undefined reference errors
Link against the same libs as abuild-tar and fix the order of the CC arguments.
This commit is contained in:
parent
2d2be1ca1b
commit
a54d3ba2ae
3
Makefile
3
Makefile
@ -47,6 +47,7 @@ OBJS-abuild-tar = abuild-tar.o
|
||||
CFLAGS-abuild-tar.o = $(SSL_CFLAGS)
|
||||
LDFLAGS-abuild-tar = $(SSL_LDFLAGS)
|
||||
LIBS-abuild-tar = $(SSL_LIBS)
|
||||
LIBS-abuild-tar.static = $(LIBS-abuild-tar)
|
||||
|
||||
OBJS-abuild-gzsplit = abuild-gzsplit.o
|
||||
LDFLAGS-abuild-gzsplit = $(ZLIB_LIBS)
|
||||
@ -86,7 +87,7 @@ abuild-gzsplit: abuild-gzsplit.o
|
||||
$(LINK)
|
||||
|
||||
abuild-tar.static: abuild-tar.o
|
||||
$(CC) $(CPPFLAGS) $(CFLAGS) $(CFLAGS-$@) -o $@ -static $(LIBS-$@) $^
|
||||
$(CC) -static $(CPPFLAGS) $(CFLAGS) $(CFLAGS-$@) $^ -o $@ $(LIBS-$@)
|
||||
|
||||
help:
|
||||
@echo "$(P) makefile"
|
||||
|
Loading…
Reference in New Issue
Block a user