Re: [PATCH] fs/Makefile error in test9pre8 (dquot.o left behind)

2000-10-03 Thread Linus Torvalds



On Tue, 3 Oct 2000, Matti Aarnio wrote:
> 
>Just FYI.  THAT can't be MIME (quoted printable) error.

Oh, but it is.

>The '=' is very special in MIME QP, and as the '+=' at
>that very same line has not been turned into '+=3D', it
>wasn't QP encoding happenstance.

That's simply because I caught the worst mime-damage, and missed the fact
that the "-" had also been damaged.

Anyway, please avoid MIME if you can. Plain ascii is fine.

Linus

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/



Re: [PATCH] fs/Makefile error in test9pre8 (dquot.o left behind)

2000-10-03 Thread Matti Aarnio

On Mon, Oct 02, 2000 at 09:49:57PM +0200, Rasmus Andersen wrote:
> Hi.
> 
> When I compile a test9pre8 kernel with quota support I get a lot of
> link errors regarding quota stuff. The patch below fixes this by
> correcting what seems to be a mailer/mime error:

   Just FYI.  THAT can't be MIME (quoted printable) error.

   The '=' is very special in MIME QP, and as the '+=' at
   that very same line has not been turned into '+=3D', it
   wasn't QP encoding happenstance.

   (The fix itself is "obviously correct", of course)

> --- linux-240test9-pre8-clean/fs/Makefile Mon Oct  2 21:07:54 2000
> +++ linux/fs/Makefile Mon Oct  2 21:43:56 2000
> @@ -17,7 +17,7 @@
>   filesystems.o
>  
>  ifeq ($(CONFIG_QUOTA),y)
> -obj=ADy += dquot.o
> +obj-y += dquot.o
>  else
>  obj-y += noquot.o
>  endif
> 
> -- 
> Rasmus([EMAIL PROTECTED])
> 
> "An intellectual is someone whose mind watches itself."
>   -- Albert Camus (1913-1960)
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to [EMAIL PROTECTED]
> Please read the FAQ at http://www.tux.org/lkml/
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/



[PATCH] fs/Makefile error in test9pre8 (dquot.o left behind)

2000-10-02 Thread Rasmus Andersen

Hi.

When I compile a test9pre8 kernel with quota support I get a lot of
link errors regarding quota stuff. The patch below fixes this by
correcting what seems to be a mailer/mime error:

--- linux-240test9-pre8-clean/fs/Makefile   Mon Oct  2 21:07:54 2000
+++ linux/fs/Makefile   Mon Oct  2 21:43:56 2000
@@ -17,7 +17,7 @@
filesystems.o
 
 ifeq ($(CONFIG_QUOTA),y)
-obj=ADy += dquot.o
+obj-y += dquot.o
 else
 obj-y += noquot.o
 endif

-- 
Rasmus([EMAIL PROTECTED])

"An intellectual is someone whose mind watches itself."
  -- Albert Camus (1913-1960)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/