Hi Dmitry, * Dmitry V. Krivenok wrote on Fri, Nov 28, 2008 at 09:40:09AM CET: > I have a helper script in tests subdirectory of my project. > This script is used ONLY for tests (make check). > So, it should be distributed. > > I added the following lines > dist_bin_SCRIPTS = fds_by_process.sh > check_SCRIPTS = fds_by_process.sh > in tests/Makefile.am > > Of course I don't want to install this script (by make install). > So, I added > noinst_SCRIPTS = fds_by_process.sh > in tests/Makefile.am. > > Unfortunately, this script is installed by "make install".
Using either the check_SCRIPTS or the noninst_SCRIPTS line without the other two lines should be sufficient to fix this. Cheers, Ralf