diff options
author | Nicholas Clark <nick@ccl4.org> | 2012-04-25 18:05:24 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2013-07-13 12:32:13 +0200 |
commit | 97f2b15752001f1cd927e4b339e45c5d631ba590 (patch) | |
tree | cc9de67a02fa566192a93e787ad33eba470d9086 /Makefile.SH | |
parent | 6784814bae49a9e0f26db3808d8c3e67e688cc57 (diff) | |
download | perl-97f2b15752001f1cd927e4b339e45c5d631ba590.tar.gz |
In Makefile.SH, use the long names for options passed to install{perl,man}
This makes it clearer what is going on, and enables a simplifying refactoring.
Diffstat (limited to 'Makefile.SH')
-rwxr-xr-x | Makefile.SH | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.SH b/Makefile.SH index 6e533e1343..0a9660e051 100755 --- a/Makefile.SH +++ b/Makefile.SH @@ -1007,19 +1007,19 @@ extras.install: $(PERL_EXE) no-install install.perl install.man install.html install_strip install-strip: - $(MAKE) STRIPFLAGS=-s install DESTDIR="$(DESTDIR)" + $(MAKE) STRIPFLAGS=--strip install DESTDIR="$(DESTDIR)" install_all install-all: $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) DESTDIR="$(DESTDIR)" install_verbose install-verbose: - $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-V DESTDIR="$(DESTDIR)" + $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=--verbose DESTDIR="$(DESTDIR)" install_silent install-silent: - $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-S DESTDIR="$(DESTDIR)" + $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=--silent DESTDIR="$(DESTDIR)" install_notify install-notify: - $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=-n DESTDIR="$(DESTDIR)" + $(MAKE) install.perl install.man STRIPFLAGS=$(STRIPFLAGS) INSTALLFLAGS=--notify DESTDIR="$(DESTDIR)" # Set this to an empty string to avoid an attempt of rebuild before install INSTALL_DEPENDENCE = all |