-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Jason Gurtz wrote:

>>  File "/usr/lib/python2.4/posixpath.py", line 62, in join
>>    elif path == '' or path.endswith('/'):
>>AttributeError: 'NoneType' object has no attribute 'endswith'
>>make[2]: *** [prepkde] Error 1
> 
> 
> I wonder if perhaps this isn't something simple like a typo?  Maybe it
> needs to be ends_with or endsWith or maybe that method call needs a
> different format/number of args?  Who knows--I'm more of a perler myself
> ;)--you might be able to muck around with google and python docs and
> figure out what this is.

Well, I do know Python and its error-messages.

The problem is "NoneType". The Variable path simply isn't set.

I just looked at the os.path.join function and it seems that the
Variable opt_kdebasedir is unset:

>>> os.path.join('something','someotherthing')
'something/someotherthing'

>>> os.path.join(None,'someotherthing')
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
  File "/usr/lib/python2.3/posixpath.py", line 62, in join
    elif path == '' or path.endswith('/'):
AttributeError: 'NoneType' object has no attribute 'endswith'


So, how and where is the variable opt_kdebasedir set?



Cheers,
- --
Philipp TÃlke

Tell the truth and run.  -- Yugoslavian Proverb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)

iD4DBQFCOwv23pjW15ah/noRAgz/AJ9gZ5UQ2eo9HE68IPDLS66F2CShFQCYgcgn
Dr0Iqv5Z09Oh9t+wqECFZA==
=v67s
-----END PGP SIGNATURE-----
-- 
http://linuxfromscratch.org/mailman/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to