• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Experimental package creation tool for MinGW.org


Commit MetaInfo

Revisão6f219a9f426fdf5f79762c00e1d70d4f1113234f (tree)
Hora2020-08-22 03:52:38
AutorKeith Marshall <keith@user...>
CommiterKeith Marshall

Mensagem de Log

Support standard "installdirs" and "install-strip" rules.

* Makefile.in (install-dirs): Rename non-standard rule...
(installdirs): ...to this, to conform to GNU standard nomenclature.
(install-strip): Add rule; there is nothing to strip, so just...
(install): ...alias this.

Mudança Sumário

Diff

--- a/Makefile.in
+++ b/Makefile.in
@@ -98,7 +98,10 @@ MAKE_SCRIPT = sed -e 's,%PACKAGE%,$(PACKAGE),' -e 's,%VERSION%,$(VERSION),'
9898 # Installation Rules
9999 # ------------------
100100 #
101-install: install-dirs install-scripts install-libexec
101+# GNU standards require both "install", and "install-strip" targets.
102+# There's nothing to strip here, so both may do the same.
103+#
104+install install-strip: installdirs install-scripts install-libexec
102105
103106 INSTALL = @INSTALL@
104107 INSTALL_SCRIPT = @INSTALL_SCRIPT@
@@ -116,7 +119,7 @@ bindir = @bindir@
116119 # place, create it ...
117120 #
118121 ${bindir} ${libexecdir}/modules ${libexecdir}/plugins:
119-install-dirs: ${bindir} ${libexecdir}/modules ${libexecdir}/plugins
122+installdirs: ${bindir} ${libexecdir}/modules ${libexecdir}/plugins
120123 $(MKDIR_P) $^
121124
122125 # ... before installing the entire complement of executable scripts ...