Skip to content
Snippets Groups Projects
Commit d616ef70 authored by Niels Möller's avatar Niels Möller
Browse files

* tools/Makefile.in (install): Use MKDIR_P to create installation

directory. Install only one file at a time.

Rev: src/nettle/tools/Makefile.in:1.18
parent 1e85194d
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,7 @@ INSTALL_DATA = @INSTALL_DATA@ ...@@ -10,6 +10,7 @@ INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = $(INSTALL_PROGRAM) -s INSTALL_STRIP_PROGRAM = $(INSTALL_PROGRAM) -s
MKDIR_P = @MKDIR_P@
include ../config.make include ../config.make
...@@ -50,8 +51,10 @@ check: ...@@ -50,8 +51,10 @@ check:
true true
install: $(TARGETS) install: $(TARGETS)
$(INSTALL) -d $(DESTDIR)$(bindir) $(MKDIR_P) $(DESTDIR)$(bindir)
$(INSTALL_PROGRAM) $(TARGETS) $(DESTDIR)$(bindir) for f in $(TARGETS) ; do \
$(INSTALL_PROGRAM) $$f $(DESTDIR)$(bindir) ; \
done
uninstall: uninstall:
for f in $(TARGETS) ; do \ for f in $(TARGETS) ; do \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment