Comment 21 for bug 152273

Revision history for this message
Koen (koen-beek) wrote :

I've pinpointed the problem to one line in the 99_autoconf patch

these are the changes around line 1760 in the current 99_autoconf.patch file

1759 -datadir='${prefix}/share'
1760 +datarootdir='${prefix}/share'
1761 +datadir='${datarootdir}'

line 1761 should be +datadir='${prefix}/share'

it seems that the dataroordir does not get expanded correctly

I'll attach two new debdiffs with this minor change only