zsh-workers
 help / color / mirror / code / Atom feed
From: Clint Adams <schizo@debian.org>
To: zsh-workers@sunsite.auc.dk
Subject: PATCH: partial program transform support
Date: Tue, 30 Nov 1999 10:46:21 -0500	[thread overview]
Message-ID: <19991130104621.C28014@dman.com> (raw)

Well, I'm talking too much.  This puts some use to the AC_ARG_PROGRAM
already in configure.in.

I actually wanted to do this for the info files, but that would involve
making .yo.in files and replacing what now says "zsh.info" and so on,
so I thought I'd start with the simple stuff and give people a
chance to be horrified.

--- Src/Makefile.in     1999/11/19 09:26:30     1.1.1.14
+++ Src/Makefile.in     1999/11/30 15:35:20
@@ -42,6 +42,9 @@
 sdir_src      = $(sdir)
 dir_src       = .
 
+transform=@program_transform_name@
+tzsh=`echo zsh | sed '$(transform)'`
+
 # ========= DEPENDENCIES FOR BUILDING ==========
 
 LINK        = $(CC) $(LDFLAGS) $(EXELDFLAGS) $(EXTRA_LDFLAGS) -o $@
@@ -159,14 +162,14 @@
 # install binary, creating install directory if necessary
 install.bin-here: zsh install.bin-@L@
        $(sdir_top)/mkinstalldirs $(DESTDIR)$(bindir)
-       $(INSTALL_PROGRAM) $(STRIPFLAGS) zsh $(DESTDIR)$(bindir)/zsh-$(VERSION)
-       if test -f $(DESTDIR)$(bindir)/zsh; then \
-           rm -f $(DESTDIR)$(bindir)/zsh.old; \
-           $(LN) $(DESTDIR)$(bindir)/zsh $(DESTDIR)$(bindir)/zsh.old; \
+       $(INSTALL_PROGRAM) $(STRIPFLAGS) zsh $(DESTDIR)$(bindir)/$(tzsh)-$(VERSION)
+       if test -f $(DESTDIR)$(bindir)/$(tzsh); then \
+           rm -f $(DESTDIR)$(bindir)/$(tzsh).old; \
+           $(LN) $(DESTDIR)$(bindir)/$(tzsh) $(DESTDIR)$(bindir)/$(tzsh).old; \
        else :; fi
-       rm -f $(DESTDIR)$(bindir)/zsh.new
-       $(LN) $(DESTDIR)$(bindir)/zsh-$(VERSION) $(DESTDIR)$(bindir)/zsh.new
-       mv $(DESTDIR)$(bindir)/zsh.new $(DESTDIR)$(bindir)/zsh
+       rm -f $(DESTDIR)$(bindir)/$(tzsh).new
+       $(LN) $(DESTDIR)$(bindir)/$(tzsh)-$(VERSION) $(DESTDIR)$(bindir)/$(tzsh).new
+       mv $(DESTDIR)$(bindir)/$(tzsh).new $(DESTDIR)$(bindir)/$(tzsh)
 
 install.bin-N:
 install.bin-L: $(LIBZSH)
@@ -175,7 +178,7 @@
 
 # uninstall binary
 uninstall.bin-here: uninstall.bin-@L@
-       rm -f $(DESTDIR)$(bindir)/zsh-$(VERSION) $(DESTDIR)$(bindir)/zsh
+       rm -f $(DESTDIR)$(bindir)/$(tzsh)-$(VERSION) $(DESTDIR)$(bindir)/$(tzsh)
 
 uninstall.bin-N:
 uninstall.bin-L:


             reply	other threads:[~1999-11-30 15:46 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1999-11-30 15:46 Clint Adams [this message]
1999-12-02 16:28 ` Bart Schaefer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=19991130104621.C28014@dman.com \
    --to=schizo@debian.org \
    --cc=zsh-workers@sunsite.auc.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).