From: Michael Tremer Date: Sun, 7 Feb 2010 17:19:09 +0000 (+0100) Subject: nasm: Build without stack protector. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e68b09cf4c2179754ab952385467abf74d459a4;p=ipfire-3.x.git nasm: Build without stack protector. This is needed because nasm gets killed immediately by the stack smashing protector. --- diff --git a/pkgs/core/nasm/nasm.nm b/pkgs/core/nasm/nasm.nm index 9db33ca3b..5ce2bbc7d 100644 --- a/pkgs/core/nasm/nasm.nm +++ b/pkgs/core/nasm/nasm.nm @@ -42,6 +42,8 @@ endef PKG_TARBALL = $(THISAPP).tar.bz2 +CFLAGS += -fno-stack-protector + define STAGE_INSTALL cd $(DIR_APP) && make install INSTALLROOT=$(BUILDROOT) endef