Page 1 of 1

make install arch linux

Posted: Wed Oct 10, 2012 5:50 am
by bechill

Code: Select all

@echo packaging wxWidgets ... from directory -pthread
@cd -pthread && tar cf /tmp/clwx294.tar libwx*.so* && tar xf /tmp/clwx2$
@rm -f /tmp/clwx294.tar
These lines are failing on the install target. I have been unable to get wx-config --libs | cut -d" " -f1 | cut -DL -f2 to give a directory. This just outputs -pthread. I'm not sure this is required, wx 2.9.4 is installed system wide, running configure with WXCONFIG=wx-config --version=2.9. Compiles beautifully, just won't install completely / error free because of this error, which causes my PKGBUILD (arch package) to fail.

output of wx-config-2.9:

Code: Select all

-pthread   -lwx_gtk2u_xrc-2.9 -lwx_gtk2u_html-2.9 -lwx_gtk2u_qa-2.9 -lwx_gtk2u_adv-2.9 -lwx_gtk2u_core-2.9 -lwx_baseu_xml-2.9 -lwx_baseu_net-2.9 -lwx_baseu-2.9 

Re: make install arch linux

Posted: Wed Oct 10, 2012 11:23 am
by eranif
I fixed configure to check that "-L" is present before attempting to package wx libraries

Eran

Re: make install arch linux

Posted: Wed Oct 10, 2012 5:17 pm
by bechill
Thanks for the fix, works great now, package is codelite4-svn in the AUR for anyone interested.