diff --git a/ChangeLog b/ChangeLog index 09fb2a0bd..e386be57a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2008-02-01 Robert Millan + + Correct a mistake in previous commit. + + * conf/i386-pc.rmk (normal/execute.c_DEPENDENCIES): Move to the + top. + (normal/command.c_DEPENDENCIES): New variable. + 2008-02-01 Robert Millan * conf/i386-efi.rmk (normal/execute.c_DEPENDENCIES): Move to the diff --git a/conf/i386-pc.mk b/conf/i386-pc.mk index 9f6dce142..9c5b90f7f 100644 --- a/conf/i386-pc.mk +++ b/conf/i386-pc.mk @@ -6,6 +6,10 @@ COMMON_ASFLAGS = -nostdinc -fno-builtin -m32 COMMON_CFLAGS = -fno-builtin -mrtd -mregparm=3 -m32 COMMON_LDFLAGS = -m32 -nostdlib +# Used by various components. These rules need to precede them. +normal/execute.c_DEPENDENCIES = grub_script.tab.h +normal/command.c_DEPENDENCIES = grub_script.tab.h + # Images. pkglib_IMAGES = boot.img diskboot.img kernel.img pxeboot.img lnxboot.img diff --git a/conf/i386-pc.rmk b/conf/i386-pc.rmk index f4d7a08e8..747b7935c 100644 --- a/conf/i386-pc.rmk +++ b/conf/i386-pc.rmk @@ -6,6 +6,10 @@ COMMON_ASFLAGS = -nostdinc -fno-builtin -m32 COMMON_CFLAGS = -fno-builtin -mrtd -mregparm=3 -m32 COMMON_LDFLAGS = -m32 -nostdlib +# Used by various components. These rules need to precede them. +normal/execute.c_DEPENDENCIES = grub_script.tab.h +normal/command.c_DEPENDENCIES = grub_script.tab.h + # Images. pkglib_IMAGES = boot.img diskboot.img kernel.img pxeboot.img lnxboot.img