Re: [arch-general] libconfig error

2009-04-04 Thread Mike Sampson
On Sun, Apr 5, 2009 at 9:30 AM, Jan de Groot wrote: > On Sun, 2009-04-05 at 09:14 +1000, Mike Sampson wrote: > > Hi, > > just did a pacman -Syu and one of the packages gives an error on install > > but still seems to install. Is this error harmless and ok to ignore? > System > > is x86_64. > > >

Re: [arch-general] libconfig error

2009-04-04 Thread Jan de Groot
On Sun, 2009-04-05 at 09:14 +1000, Mike Sampson wrote: > Hi, > just did a pacman -Syu and one of the packages gives an error on install > but still seems to install. Is this error harmless and ok to ignore? System > is x86_64. > Besides the missing .install file in CVS, the .install scriptlet tr

[arch-general] libconfig error

2009-04-04 Thread Mike Sampson
Hi, just did a pacman -Syu and one of the packages gives an error on install but still seems to install. Is this error harmless and ok to ignore? System is x86_64. [mercury|/home/mike] # pacman -S libconfig > warning: libconfig-1.3.2-2 is up to date -- reinstalling > resolving dependencies... > l

Re: [arch-general] Makefile to build all packages

2009-04-04 Thread Alessandro Doro
On Sat, Apr 04, 2009 at 04:35:04PM -0400, Baho Utot wrote: > Kurt J. Bosch wrote: >> On 2009-04-04 15:06, Baho Utot wrote: >>> >>> find returns the directory entry with ./ in front of the directory name >>> Anyone know how to make find return abs instead of ./abs >>> >> man find suggests -printf %P

Re: [arch-general] Makefile to build all packages

2009-04-04 Thread Baho Utot
Abhishek Dasgupta wrote: 2009/4/4 Baho Utot : find returns the directory entry with ./ in front of the directory name Anyone know how to make find return abs instead of ./abs If i begins with "./" you can remove it using echo $i | cut -c 3- adding i=$(echo $i | cut -c 3-) t

Re: [arch-general] Makefile to build all packages

2009-04-04 Thread Baho Utot
Kurt J. Bosch wrote: On 2009-04-04 15:06, Baho Utot wrote: find returns the directory entry with ./ in front of the directory name Anyone know how to make find return abs instead of ./abs man find suggests -printf %P for this :) doesn't work

Re: [arch-general] Makefile to build all packages

2009-04-04 Thread Kurt J. Bosch
On 2009-04-04 15:06, Baho Utot wrote: find returns the directory entry with ./ in front of the directory name Anyone know how to make find return abs instead of ./abs man find suggests -printf %P for this :)

[arch-general] archlinux on twitter

2009-04-04 Thread Abhishek Dasgupta
Does anyone know who owns the twitter archlinux account at: http://twitter.com/archlinux Just asking, since it would be useful to post library transitions and big updates (like today's GNOME transition) to twitter so that it's easier for users to stay informed. -- Abhishek

Re: [arch-general] bz 12953 cant start mysqld

2009-04-04 Thread Adam Stokes
On Fri, Apr 3, 2009 at 10:49 PM, Abdul Halim wrote: > On Sat, Apr 4, 2009 at 9:29 AM, Adam Stokes wrote: >> There is a fix there and ticket has been open for 4 months. I feel its >> a pretty big issue since its an initialization script, could someone >> (the maintainer) please have a look at this

Re: [arch-general] Makefile to build all packages

2009-04-04 Thread Abhishek Dasgupta
2009/4/4 Baho Utot : > find returns the directory entry with ./ in front of the directory name > Anyone know how to make find return abs instead of ./abs > If i begins with "./" you can remove it using echo $i | cut -c 3- -- Abhishek

[arch-general] Makefile to build all packages

2009-04-04 Thread Baho Utot
I am working on a makefile to build all the packages in a abs repos Here is what I have # # Maker.sh # rm Makefile echo 'CHROOT=/home/Build.Chroot' >> Makefile echo 'REPO=CORE' >> Makefile echo 'REPOS=/home/${REPO}' >> Makefile echo 'PKG=i686.pkg.tar.gz' >> Makefile echo -e "all:\t ALL" >> Ma