|
From: Christian S. <chr...@ep...> - 2003-12-22 13:19:44
|
Es geschah am Sonntag, 21. Dezember 2003 13:34 als Rui Nuno Capela schrieb: > Mark Constable wrote: > > Yo Rui, would you mind if I put this on the Wiki at alsa.opensrc.org ? > > Be my guest. > > However I've refined the previous script a little bit, and now it takes > the following form: > > ---BOF: linuxsampler_cvs_install.sh --- > #!/bin/sh > cvs -z3 > -d:pserver:ano...@cv...:/home/schropp/linuxsampler co > linuxsampler > cd linuxsampler || exit 1 > find -name "acconfig.h" -exec rm -rvf \{} \; > find -name "aclocal.m4" -exec rm -rvf \{} \; > find -name "config.*" -exec rm -rvf \{} \; > find -name "*.cache" -exec rm -rvf \{} \; > make -f Makefile.cvs > ./configure --prefix=/usr/local --enable-optimize > make || exit 2 > su -c "make install" > ---EOF: linuxsampler_cvs_install.sh --- I also removed acconfig.h now from CVS, which really made sense, but I'm not sure about removing aclocal.m4, config.h.in and config.sub. If I do that it's not possible anymore to make a simple: ./configure && make Although it seems that you Rui have to autoreconf anyway, but most others don't have to, so I think it's better to keep them at the moment. > As of yesterday on IRC, Chris agreed to remove the "offending" files from > CVS, so I think the explicit removal above will be soon a non-op. OTOH it > could be moved apropriately into Makefile.cvs. Send your patch and we can elaborate a solution that fits everybody. But again, I don't think it's good to just remove that files. Best solution would be to remove that files by script only if ./configure fails. CU Christian |