Skip to content
Snippets Groups Projects
Commit d9a19f0d authored by Claes Nästén's avatar Claes Nästén
Browse files

Makefile: Do not create multiple directories in one go

/usr/ucb/bin/install on Solaris does not support creating multiple
directories in one go, issue multiple install commands instead.
parent ab5c502b
No related tags found
No related merge requests found
Pipeline #166568 passed with stages
in 10 minutes and 27 seconds
......@@ -391,7 +391,8 @@ install-cli: cli
$(INSTALL) x264$(EXE) $(DESTDIR)$(bindir)
install-lib-dev:
$(INSTALL) -d $(DESTDIR)$(includedir) $(DESTDIR)$(libdir)/pkgconfig
$(INSTALL) -d $(DESTDIR)$(includedir)
$(INSTALL) -d $(DESTDIR)$(libdir)/pkgconfig
$(INSTALL) -m 644 $(SRCPATH)/x264.h x264_config.h $(DESTDIR)$(includedir)
$(INSTALL) -m 644 x264.pc $(DESTDIR)$(libdir)/pkgconfig
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment