diff options
author | Tim 'mithro' Ansell <mithro@mithis.com> | 2009-01-22 05:06:41 +0100 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2009-01-30 02:04:10 +0100 |
commit | b44d49ab0954accefba4c71274ab58abe1c25c52 (patch) | |
tree | fb160500ae840f137e8289a2d74f130813d3cdd4 /Documentation/lguest | |
parent | lguest: typos fix (diff) | |
download | linux-b44d49ab0954accefba4c71274ab58abe1c25c52.tar.xz linux-b44d49ab0954accefba4c71274ab58abe1c25c52.zip |
lguest: disable the FORTIFY for lguest.
Makes all the warnings go away when compiling lguest on Ubuntu on
Intrepid or greater.
Signed-off-by: Timothy R Ansell <mithro@mithis.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'Documentation/lguest')
-rw-r--r-- | Documentation/lguest/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/lguest/Makefile b/Documentation/lguest/Makefile index 725eef81cd48..1f4f9e888bd1 100644 --- a/Documentation/lguest/Makefile +++ b/Documentation/lguest/Makefile @@ -1,5 +1,5 @@ # This creates the demonstration utility "lguest" which runs a Linux guest. -CFLAGS:=-Wall -Wmissing-declarations -Wmissing-prototypes -O3 -I../../include -I../../arch/x86/include +CFLAGS:=-Wall -Wmissing-declarations -Wmissing-prototypes -O3 -I../../include -I../../arch/x86/include -U_FORTIFY_SOURCE LDLIBS:=-lz all: lguest |