scottdraves / flam3

the original fractal flame renderer and genetic language
GNU General Public License v3.0
400 stars 73 forks source link

Unsafe autotools symlinks in repository #22

Open coldtobi opened 6 years ago

coldtobi commented 6 years ago

While updating the Debian package I saw that there are some (absolute) symlinks in the repository. This is bad for several reasons:

autotools can be instructed to copy the files instead of symlinking it. See autoreconf(1), but it would even better if you completly drop the generated files and let the user regenerate it using autoreconf. (usually projects provide a autogen.sh to do that). Autoreconf should be preferred anyway, as it is nice to distributions and porting to other architectures.

Thanks for considering!