diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2017-01-28 18:09:22 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2017-01-28 18:09:22 -0500 |
commit | 85a5c87a03836f09af6ba81a6e38b5d87029380a (patch) | |
tree | a479409550aca314d786151895d41e38ae05da74 | |
parent | d66a7e48d67d310084a57a31652ea561b764e0f7 (diff) |
Makefile: pass the -D flag to install(1)
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -22,10 +22,10 @@ files.out.int += *.sh $(DESTDIR)$(bindir)/%: % $(NORMAL_INSTALL) - $(INSTALL_PROGRAM) $< $@ + $(INSTALL_PROGRAM) -D $< $@ $(DESTDIR)$(datarootdir)/applications/%: % $(NORMAL_INSTALL) - $(INSTALL_DATA) $< $@ + $(INSTALL_DATA) -D $< $@ .DELETE_ON_ERROR: .SECONDARY: |