diff options
author | 2006-10-19 20:17:19 +0000 | |
---|---|---|
committer | 2006-10-19 20:17:19 +0000 | |
commit | 07e5502c85e7890af25d0717e3f1ab469c1175a1 (patch) | |
tree | f9fa78a1f6d16cd92ef0d52c7efba917106e8396 /app-shells/tcsh/files | |
parent | Depend on 1.1.2 version of flac, as the 1.1.3 version changes API. (diff) | |
download | historical-07e5502c85e7890af25d0717e3f1ab469c1175a1.tar.gz historical-07e5502c85e7890af25d0717e3f1ab469c1175a1.tar.bz2 historical-07e5502c85e7890af25d0717e3f1ab469c1175a1.zip |
Added patch for bug #151951, thanks dev-zero for pointing out
Package-Manager: portage-2.1.1
Diffstat (limited to 'app-shells/tcsh/files')
-rw-r--r-- | app-shells/tcsh/files/tcsh-6.14-makefile.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app-shells/tcsh/files/tcsh-6.14-makefile.patch b/app-shells/tcsh/files/tcsh-6.14-makefile.patch new file mode 100644 index 000000000000..6d85aa0588f3 --- /dev/null +++ b/app-shells/tcsh/files/tcsh-6.14-makefile.patch @@ -0,0 +1,16 @@ +* don't strip (portage does that for us) +* don't try to move away an older tcsh binary; we don't install in / so + that only results in an ugly error message + +--- tcsh-6.14.00/Makefile.in ++++ tcsh-6.14.00/Makefile.in +@@ -477,9 +477,7 @@ + + install: tcsh$(EXEEXT) + -mkdir -p ${DESTBIN} +- -mv -f ${DESTBIN}/tcsh$(EXEEXT) ${DESTBIN}/tcsh.old + cp tcsh$(EXEEXT) ${DESTBIN}/tcsh$(EXEEXT) +- -strip ${DESTBIN}/tcsh$(EXEEXT) + chmod 755 ${DESTBIN}/tcsh$(EXEEXT) + + install.man: tcsh.man |