Bruce Dubbs wrote:
> Randy McMurchy wrote:
> 
>>Bruce Dubbs wrote these words on 12/07/05 20:32 CST:
>>
>>EsoundD - Doc Installation is all messed up.
>>
>>I also noticed that it creates /usr/share/doc/esound/html but we
>>don't use it. I was going to change the mkdir command to a mv
>>command like this:
>>
>>mv -v /usr/share/doc/esound /usr/share/doc/esound-0.2.36
> 
> 
> Checking my new system, I find /usr/share/doc/esound to be empty except
> for an empty html directory.
> 
> ???

OK, I figured it out.  The Makefile in the docs/ directory has:

mkdir -p -- . /tmp/esound/install/usr/share/doc/esound/html
files=`cd html && echo *.html`; \
test "$files" || for f in $files; do \
  cp -p $f /tmp/esound/install/usr/share/doc/esound/html/$f; \
done

But the command should be:

test "$files" && for f in $files; do \
              ^^
  cp -p html/$f /tmp/esound/install/usr/share/doc/esound/html/$f
        ^^^^^
done

I'll investigate sending a patch upstream.

  -- Bruce

-- 
http://linuxfromscratch.org/mailman/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to