discuss-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Problem building from scratch... (SSL.bundle modification)


From: Chris B . Vetter
Subject: Re: Problem building from scratch... (SSL.bundle modification)
Date: Mon, 10 Dec 2001 13:36:58 -0800

On Mon, 10 Dec 2001 22:30:49 +0100 (CET)
Erik Dalen <dalen@jpl.se> wrote:
> I think I'm kind of getting the same problem. Except your suggestion
> doesn't work. I'm using GNU tar 1.13 on slackware.
> The make install for core/gui says this:
> --snip--
>   if [ $file != __done ]; then \
>     /usr/bin/ginstall -c -m 644 ../Headers/AppKit/$file \
>       /System/Headers/gnustep/AppKit/$file ; \
>   fi; \
> done;
> rm -rf /System/Library/Bundles/libgmodel.bundle; \
> tar -chf - --exclude=libgmodel.bundle/Contents/Resources \
>              libgmodel.bundle \
>     | (cd /System/Library/Bundles; tar xf -); \
> (cd /System/Library/Bundles/libgmodel.bundle/Contents; \
>     rm -f Resources; ln -s ../Resources .)
> rm: `Resources' is a directory
> ln: `./Resources': cannot overwrite directory
> any suggestions?

  rm -f Resources

assumes that Resources is a file. Since it's a directory it 
should be

  rm -rf Resources

-- 
Chris



reply via email to

[Prev in Thread] Current Thread [Next in Thread]