diff options
author | EuAndreh <eu@euandre.org> | 2024-08-16 15:28:56 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-08-16 15:28:56 -0300 |
commit | 8e6b44c51217acc8fc3cd781ae4c196a2b92b32d (patch) | |
tree | d634b27f53d65653e62bf69f900ce27b8e4c319e | |
parent | src/ifnew: Add working utility (diff) | |
download | eut-8e6b44c51217acc8fc3cd781ae4c196a2b92b32d.tar.gz eut-8e6b44c51217acc8fc3cd781ae4c196a2b92b32d.tar.xz |
Makefile: Use correct $(sources) in "install" target
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -69,7 +69,7 @@ install: all '$(DESTDIR)$(BINDIR)' \ '$(DESTDIR)$(SRCDIR)' cp $(sources.sh) '$(DESTDIR)$(BINDIR)' - cp $(sources.sh) '$(DESTDIR)$(SRCDIR)' + cp $(sources) '$(DESTDIR)$(SRCDIR)' ## Uninstalls from $(DESTDIR)$(PREFIX). This is a perfect mirror |