Re: CVS Automake installs noinst_SCRIPTS.

2001-03-06 Thread Tom Tromey
> "Pavel" == Pavel Roskin <[EMAIL PROTECTED]> writes: Pavel> The fix appears to be quite simple. The testsuite passes. Some Pavel> real package using noinst_SCRIPTS is now in a good shape Pavel> (i.e. `make install' works as it should and even `make Pavel> distcheck' passes). Thanks for fixi

Re: CVS Automake installs noinst_SCRIPTS.

2001-03-06 Thread Pavel Roskin
On 6 Mar 2001, Akim Demaille wrote: > Pavel Roskin <[EMAIL PROTECTED]> writes: > > > .PHONY uninstall-am: uninstall-%DIR%SCRIPTS > > I fixed this typo (missing ?INSTALL?). Thanks! I've removed noinstdir.test from XFAIL_TESTS. Regards, Pavel Roskin

Re: CVS Automake installs noinst_SCRIPTS.

2001-03-06 Thread Akim Demaille
Pavel Roskin <[EMAIL PROTECTED]> writes: > .PHONY uninstall-am: uninstall-%DIR%SCRIPTS I fixed this typo (missing ?INSTALL?). > -uninstall-%DIR%SCRIPTS: > - @$(NORMAL_UNINSTALL) > - @list='$(%DIR%_SCRIPTS)'; for p in $$list; do \ > - f="`echo $$p|sed '$(transform)'`"; \ > -

Re: CVS Automake installs noinst_SCRIPTS.

2001-03-06 Thread Akim Demaille
Pavel Roskin <[EMAIL PROTECTED]> writes: > Done. Great, thanks! > The fix appears to be quite simple. The testsuite passes. Some real > package using noinst_SCRIPTS is now in a good shape (i.e. `make install' > works as it should and even `make distcheck' passes). If you didn't apply it, I wil

Re: CVS Automake installs noinst_SCRIPTS.

2001-03-05 Thread Pavel Roskin
Hello, Tom! > I'm guessing this is related to Akim's latest patches. Akim does a great job, but he needs a Mozilla-style tinderbox (http://tinderbox.mozilla.org/) to alert him when something goes wrong. > Please check this in. > Bonus points if you also update it to check for `checkdir', which

Re: CVS Automake installs noinst_SCRIPTS.

2001-03-05 Thread Tom Tromey
> "Pavel" == Pavel Roskin <[EMAIL PROTECTED]> writes: Pavel> CVS Automake attempts to install noinst_SCRIPTS. I'm guessing this is related to Akim's latest patches. Pavel> cat > Makefile.am << 'END' Pavel> noinst_SCRIPTS = foo Pavel> END Please check this in. Bonus points if you also updat

CVS Automake installs noinst_SCRIPTS.

2001-03-05 Thread Pavel Roskin
Hello! CVS Automake attempts to install noinst_SCRIPTS. The following test fails: ___ #! /bin/sh # Test to make sure that noinst_SCRIPTS are not installed. # From Pavel Roskin. . $srcdir/defs || exit 1 cat > Makefile.am << 'END' noinst_SCRIPTS = foo END $AUTOMAKE |