summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorsin2015-01-30 16:29:56 +0000
committersin2015-01-30 16:30:11 +0000
commitfcec6e8280b6bcbaa915afd43c6ca552ccec4e87 (patch)
tree1b3bdb4793469326160024acb47103d64a824c66 /Makefile
parent4aae55c8d9e11f9c74bd214a8d89dae333ca7572 (diff)
No need for cp -f when installing
Diffstat (limited to '')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6771946..7ba18d1 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ PREFIX = /usr/local
2 2
3install: 3install:
4 mkdir -p $(DESTDIR)$(PREFIX)/include/fortify 4 mkdir -p $(DESTDIR)$(PREFIX)/include/fortify
5 cp -rf include/* $(DESTDIR)$(PREFIX)/include/fortify 5 cp -r include/* $(DESTDIR)$(PREFIX)/include/fortify
6 6
7.PHONY: 7.PHONY:
8 install 8 install