Ali Tavakol Asked: 2019-02-03 21:10:09 +0800 CST 如何防止 automake 覆盖 _DATA 文件 0 在 Makefile.am 我们有: bin_PROGRAMS = sample sample_SOURCES = main.cpp sampleconfdir = $(sysconfdir)/sample sampleconf_DATA = sample.cfg 每当我使用 安装应用程序时make install,文件 sample.cfg 都会被覆盖。如果文件已经存在,如何告诉 automake 跳过复制? autotools automake