+jattach (1.5-2) UNRELEASED; urgency=medium
+
+ * Pass on CPPFLAGS and LDFLAGS as well at build time.
+ Add and refreshed in d/patches/do-not-override-CFLAGS
+
+ -- Sven Hoexter <hoexter@debian.org> Fri, 13 Sep 2019 16:52:23 +0200
+
jattach (1.5-1) unstable; urgency=medium
* Initial release (Closes: #939577)
exported by dh.
Author: Sven Hoexter <hoexter@debian.org>
---- jattach-1.5.orig/Makefile
-+++ jattach-1.5/Makefile
+Index: jattach/Makefile
+===================================================================
+--- jattach.orig/Makefile
++++ jattach/Makefile
@@ -16,7 +16,6 @@ else
SOURCES=$(RPM_ROOT)/SOURCES
SPEC_FILE=jattach.spec
JATTACH_EXE=jattach
endif
endif
+@@ -27,7 +26,7 @@ build:
+ mkdir -p build
+
+ build/jattach: src/jattach_posix.c
+- $(CC) $(CFLAGS) -DJATTACH_VERSION=\"$(JATTACH_VERSION)\" -o $@ $^
++ $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -DJATTACH_VERSION=\"$(JATTACH_VERSION)\" -o $@ $^
+
+ build/jattach.exe: src/jattach_windows.c
+ $(CL) $(CFLAGS) /DJATTACH_VERSION=\"$(JATTACH_VERSION)\" /Fobuild/jattach.obj /Fe$@ $^ advapi32.lib /link /SUBSYSTEM:CONSOLE,5.02