Source: acme
Version: 1:0.96.2-1
Tags: patch upstream
User: [email protected]
Usertags: ftcbfs

acme fails to cross build from source, because the upstream Makefile
unconditionally strips with the wrong strip. Beyond breaking cross
compilation, this breaks DEB_BUILD_OPTIONS=nostrip as well as generation
of -dbgsym packages. It is best to not strip before dh_strip at all to
solve all of these. Please consider applying the attached patch.

Helmut
--- acme-0.96.2.orig/src/Makefile
+++ acme-0.96.2/src/Makefile
@@ -14,7 +14,6 @@
 
 acme: $(OBJS)
 	$(CC) $(CFLAGS) -o acme $(OBJS) $(LIBS)
-	strip acme
 
 
 acme.o: config.h platform.h acme.h alu.h cpu.h dynabuf.h encoding.h flow.h global.h input.h macro.h mnemo.h output.h pseudoopcodes.h section.h symbol.h version.h acme.h acme.c

Reply via email to