Re: Problems on make distcheck

2008-02-08 Thread Ralf Wildenhues
Hello Stefan, * Stefan Bienert wrote on Thu, Feb 07, 2008 at 12:17:54PM CET: > > Now the distcheck is working! I just removed the EXTRA_DIST statements > as you mentioned and everything runs fine and everything is in the > distribution package as I expected. Without having to maintain this > E

Re: Problems on make distcheck

2008-02-07 Thread Stefan Bienert
Thanks a lot, Ralf! Now the distcheck is working! I just removed the EXTRA_DIST statements as you mentioned and everything runs fine and everything is in the distribution package as I expected. Without having to maintain this EXTRA_DIST Variable by yourself, automake is even easier to handle (

Re: Problems on make distcheck

2008-02-06 Thread Ralf Wildenhues
* Stefan Bienert wrote on Sun, Feb 03, 2008 at 03:28:39PM CET: > > the output of make distcheck is attached to this mail. Thanks. Stefan sent me an example package off-list, with which I could confirm the issue. It went like this: Makefile.am contains: SUBDIRS = share EXTRA_DIST = share s

Re: Problems on make distcheck

2008-02-05 Thread Ralf Wildenhues
* Stefan Bienert wrote on Sun, Feb 03, 2008 at 08:10:16PM CET: > > > What is the Automake version you use? What do you set for > > AC_CONFIG_AUXDIR, AC_CONFIG_MACRO_DIR in configure.ac? > > I am using version 1.10 at home and version 1.9.6 at work. THe error > occurs with both of them. > > My

Re: Problems on make distcheck

2008-02-03 Thread Stefan Bienert
Hi again, > What is the Automake version you use? What do you set for > AC_CONFIG_AUXDIR, AC_CONFIG_MACRO_DIR in configure.ac? I am using version 1.10 at home and version 1.9.6 at work. THe error occurs with both of them. My settings: AC_CONFIG_AUX_DIR([share/misc/config]) AC_CONFIG_MACRO_DIR

Re: Problems on make distcheck

2008-02-03 Thread Ralf Wildenhues
* Stefan Bienert wrote on Sun, Feb 03, 2008 at 03:28:39PM CET: > > the output of make distcheck is attached to this mail. Thanks. [...] > make[1]: Leaving directory `/home/foo/bar/usr/prj-0.1/_build' > make[1]: Entering directory `/home/foo/bar/usr/prj-0.1/_build' > { test ! -d prj-0.1 || { find

Re: Problems on make distcheck

2008-02-03 Thread Stefan Bienert
Hi there, the output of make distcheck is attached to this mail. greetings, Stefan{ test ! -d prj-0.1 || { find prj-0.1 -type d ! -perm -200 -exec chmod u+w {} ';' && rm -fr prj-0.1; }; } test -d prj-0.1 || mkdir prj-0.1 list='src share '; for subdir in $list; do \ if test "$subdir" =

Re: Problems on make distcheck

2008-02-01 Thread Ralf Wildenhues
Hello Stefan, * Stefan Bienert wrote on Fri, Feb 01, 2008 at 08:55:34AM CET: > > I have a problem on the distcheck target. Every time I use it, I end up > with lots of the following messages: > > cp: cannot create regular file `phd-0.1/share/misc/config/config.guess': > Permission denied Show

Problems on make distcheck

2008-01-31 Thread Stefan Bienert
Hello Automaker, I have a problem on the distcheck target. Every time I use it, I end up with lots of the following messages: cp: cannot create regular file `phd-0.1/share/misc/config/config.guess': Permission denied What should I do about this? I found the documentation a "little" bit con