# --- ROCK-COPYRIGHT-NOTE-BEGIN --- # # This copyright note is auto-generated by ./scripts/Create-CopyPatch. # Please add additional copyright information _after_ the line containing # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by # the ./scripts/Create-CopyPatch script. Do not edit this copyright text! # # ROCK Linux: rock-src/package/powerpc/linux-mol/makefile-cppflags.patch # ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf # # This patch file is dual-licensed. It is available under the license the # patched project is licensed under, as long as it is an OpenSource license # as defined at https://www.opensource.org/ (e.g. BSD, X11) or under the terms # of the GNU General Public License as published by the Free Software # Foundation; either version 2 of the License, or (at your option) any later # version. # # --- ROCK-COPYRIGHT-NOTE-END --- --- ./src/kmod/Linux/Makefile.26.orig 2004-09-25 21:03:39.047761024 +0200 +++ ./src/kmod/Linux/Makefile.26 2004-09-25 21:04:45.726624296 +0200 @@ -9,7 +9,7 @@ obj-m := _kuname.o mol.o PERFOBJS = $(addprefix $(obj)/, $(PERFOBJS_)) -MOL_ASMFLAGS = $(ASMFLAGS) $(INCLUDES) -D__ASSEMBLY__ +MOL_ASMFLAGS = $(CPPFLAGS) $(ASMFLAGS) $(INCLUDES) -D__ASSEMBLY__ $(obj)/hook.o: $(src)/reloc_table.h @@ -37,7 +37,7 @@ $(src)/asm_offsets.h: $(src)/archinclude.h $(src)/kernel_vars.h $(src)/mac_registers.h $(src)/asm_offsets.h: $(src)/asm_offsets.c $(src)/asm_offsets.inc @$(RM) $(src)/tmp-offsets.c $@ ; cat $^ > $(src)/tmp-offsets.c - @$(CC) $(CFLAGS) -I$(src) -Wall -S $(src)/tmp-offsets.c + @$(CC) $(CPPFLAGS) $(CFLAGS) -I$(src) -Wall -S $(src)/tmp-offsets.c @echo "/* WARNING! Automatically generated from 'shared/asm_offsets.c' - DO NOT EDIT! */" > $@ @grep '^#' tmp-offsets.s >> $@ @$(RM) $(src)/tmp-offsets.*