* Diffs to latest sam
@ 1994-12-27 18:27 Rich Salz
0 siblings, 0 replies; only message in thread
From: Rich Salz @ 1994-12-27 18:27 UTC (permalink / raw)
To: sam-fans
Thanks, as always, for the update Bob!
The "install" rules for all the makefiles in the "sam" directory have
a typo in the last line. I think the stanze should be:
install: sam
cp sam $(SAMDIR)/$(RSAMNAME)
cp samsave $(SAMESAVDIR)/samesave
chmod +x $(SAMESAVEDIR)/samesave
^^^^^^^^^^^^^^^ missing
It would be nice if SAM and SAMTERMDIR in samterm/Makefile were more
similar to RSAMNAME, TERMNAME, SAMDIR, and SAMSAVEDIR in sam/Makefile.
Finally, I always put this patch back in. If $sampipe exists, it names
the pipe sam uses for its command channel. I set it in my .rcrc
*** unix.c.save Tue Dec 27 12:58:51 1994
--- unix.c Tue Dec 27 13:01:27 1994
***************
*** 90,97 ****
user = getuser();
disp = getenv("DISPLAY");
! if (disp) {
exname = (char *)alloc(4 + 6 + strlen(user) + 1 + strlen(disp) + 1);
sprint(exname, "/tmp/.sam.%s.%s", user, disp);
} else {
--- 90,102 ----
user = getuser();
disp = getenv("DISPLAY");
+ exname = getenv("sampipe");
! if (exname) {
! exname = (char *)alloc(strlen(exname) + 1);
! strcpy(exname, getenv("sampipe"));
! }
! else if (disp) {
exname = (char *)alloc(4 + 6 + strlen(user) + 1 + strlen(disp) + 1);
sprint(exname, "/tmp/.sam.%s.%s", user, disp);
} else {
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~1994-12-27 18:31 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1994-12-27 18:27 Diffs to latest sam Rich Salz
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).