[x264-devel] [Git][videolan/x264][master] Makefile: Do not create multiple directories in one go

Anton Mitrofanov (@BugMaster) gitlab at videolan.org
Tue Dec 7 15:42:48 UTC 2021



Anton Mitrofanov pushed to branch master at VideoLAN / x264


Commits:
d9a19f0d by Claes Nästén at 2021-12-07T15:51:14+01:00
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.

- - - - -


1 changed file:

- Makefile


Changes:

=====================================
Makefile
=====================================
@@ -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
 



View it on GitLab: https://code.videolan.org/videolan/x264/-/commit/d9a19f0dc7a7328809840f8d6e8d223269301bed

-- 
View it on GitLab: https://code.videolan.org/videolan/x264/-/commit/d9a19f0dc7a7328809840f8d6e8d223269301bed
You're receiving this email because of your account on code.videolan.org.




More information about the x264-devel mailing list