Skip to content
Snippets Groups Projects
Commit b940164d authored by Matei Zaharia's avatar Matei Zaharia
Browse files

Less hacky way of preventing config files from being overwritten when a template file changes

parent e5fb280e
No related branches found
No related tags found
No related merge requests found
......@@ -64,8 +64,8 @@ build/spark-dep.jar:
conf-files: $(CONF_FILES)
$(CONF_FILES): %: %.template
if [ ! -e $@ ] ; then cp $^ $@; else touch $^; fi
$(CONF_FILES): %: | %.template
cp $@.template $@
test: all
./alltests
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment