Keith Wansbrough <[EMAIL PROTECTED]> wrote,

> Just downloaded
> 
>   http://www.haskell.org/ghc/dist/4.08.1/ghc-4.08.1-i386-unknown-linux.t
> ar.gz
> 
> did configure, make, make install-docs.  The latter yields an error:
> 
> astrocyte:ghc-4.08.1$ make install-docs
> ./mkdirhier /usr/groups/haskell/share/ghc-4.08.1 
> /usr/bin/install -c -m 644   html/* /usr/groups/haskell/share/ghc-4.08.1
> /usr/bin/install: `html/building' is a directory
> /usr/bin/install: `html/set' is a directory
> make: *** [install-html] Error 1
> astrocyte:ghc-4.08.1$ 
> 
> Indeed, these two are directories.  What is going on?  I tried adding 
> '-d' to the command line for install, but that did *weird* things to my 
> permissions, and didn't do the install.

You have to create the directories with `install -d's first
and then do `install -c's on the contents of these
directories.

Manuel

_______________________________________________
Glasgow-haskell-bugs mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs

Reply via email to