From aa7f761a7f3e140e873999bff45aa53d3b14a85c Mon Sep 17 00:00:00 2001 From: Daniel Borkmann Date: Fri, 10 May 2013 14:05:53 +0200 Subject: make: force to overwrite symlink When doing to successive ``make install'' ln will throw an error that the symlink already exist, so simply force it to overwrite. Signed-off-by: Daniel Borkmann --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5788f1a..cb1cef2 100644 --- a/Makefile +++ b/Makefile @@ -241,7 +241,7 @@ netsniff-ng_install_custom flowtop_install_custom: $(Q)$(foreach file,$(NCONF_FILES),$(call INST,$(file),$(ETCDIRE));) trafgen_install_custom: $(Q)$(call INST,trafgen_stddef.h,$(ETCDIRE)) - $(Q)ln -s $(ETCDIRE)/trafgen_stddef.h $(ETCDIRE)/stddef.h + $(Q)ln -fs $(ETCDIRE)/trafgen_stddef.h $(ETCDIRE)/stddef.h astraceroute_install_custom: $(Q)$(call INST,geoip.conf,$(ETCDIRE)) -- cgit v1.2.3-54-g00ecf