views:

16

answers:

1

I'm using Automake to maintain the package, there are some shell scripts which don't need to compile, so I install them using _SCRIPT primary:

Makefile.am: 

bin_SCRIPTS = script1.sh

But the tarball generated with make dist doesn't contain this script1.sh file. Is there something I missed in the Makefile.am?

+2  A: 

Use dist_bin_SCRIPTS = script1.sh.

adl