diff options
-rw-r--r-- | .gitlab-ci.yml | 2 | ||||
-rw-r--r-- | src/Makefile.am | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 77484de..7c51609 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,6 +19,8 @@ build: - autoreconf -fi - ./configure --enable-option-checking=fatal --prefix=/ - make install CFLAGS='-Werror' DESTDIR="$(realpath ./deploy/gcc)" V=s + - make dist + - cp ptunnel-ng-*.tar.gz ./deploy/ stage: build artifacts: paths: diff --git a/src/Makefile.am b/src/Makefile.am index b39d89e..552c894 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -36,9 +36,9 @@ ptunnel_ng_SOURCES = \ ptunnel.c if IS_WINDOWS -wpcap_DEF = $(abs_srcdir)/win32/WPCAP.DEF -wpcap_IMP = $(abs_srcdir)/win32/libwpcap_implib.a -ptunnel_ng_CFLAGS += -I$(abs_srcdir)/win32/includes -DHAVE_PCAP=1 +wpcap_DEF = $(srcdir)/win32/WPCAP.DEF +wpcap_IMP = $(srcdir)/win32/libwpcap_implib.a +ptunnel_ng_CFLAGS += -I$(srcdir)/win32/includes -DHAVE_PCAP=1 if HAVE_NPCAP ptunnel_ng_CFLAGS += -DHAVE_NPCAP=1 endif |