1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00

Use csh instead of sh to work around bug w/ tty handling. Pointed out

by pw@snoopy.MV.COM.
This commit is contained in:
Jeffrey Hsu 1995-02-16 07:21:35 +00:00
parent c47635a562
commit 2d6ab957ef
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=993

View File

@ -1,7 +1,30 @@
*** makefile.0 Sat Feb 11 18:34:50 1995
--- makefile Sat Feb 11 18:46:19 1995
*** makefile.orig Wed Feb 15 18:46:18 1995
--- makefile Wed Feb 15 18:46:51 1995
***************
*** 122,129 ****
*** 101,108 ****
command:
! rm -f xbin/gcl ; echo "#!/bin/sh" > xbin/gcl; \
! echo "${GCLDIR}/unixport/saved_gcl -dir ${GCLDIR}/unixport/ \$$@ " \
>> xbin/gcl
chmod 755 xbin/gcl
--- 101,108 ----
command:
! rm -f xbin/gcl ; echo "#!/bin/csh" > xbin/gcl; \
! echo "${GCLDIR}/unixport/saved_gcl -dir ${GCLDIR}/unixport/ \$$* " \
>> xbin/gcl
chmod 755 xbin/gcl
***************
*** 118,129 ****
-if [ -d ${PREFIX_DIR}/lib ] ;then true; else mkdir ${PREFIX_DIR}/lib ; fi
-if [ -d ${PREFIX_DIR}/bin ] ;then true; else mkdir ${PREFIX_DIR}/bin ; fi
-if [ -d ${INSTALL_LIB_DIR} ] ; then true; else mkdir ${INSTALL_LIB_DIR} ;fi
! (echo "#!/bin/sh" > ${PREFIX_DIR}/bin/gcl; \
echo ${INSTALL_LIB_DIR}/unixport/saved_gcl -dir ${INSTALL_LIB_DIR}/unixport/ -libdir ${INSTALL_LIB_DIR}/ >> \
${PREFIX_DIR}/bin/gcl)
chmod a+x ${PREFIX_DIR}/bin/gcl
@ -10,7 +33,11 @@
-(cd doc ; make install)
--- 122,129 ----
--- 118,129 ----
-if [ -d ${PREFIX_DIR}/lib ] ;then true; else mkdir ${PREFIX_DIR}/lib ; fi
-if [ -d ${PREFIX_DIR}/bin ] ;then true; else mkdir ${PREFIX_DIR}/bin ; fi
-if [ -d ${INSTALL_LIB_DIR} ] ; then true; else mkdir ${INSTALL_LIB_DIR} ;fi
! (echo "#!/bin/csh" > ${PREFIX_DIR}/bin/gcl; \
echo ${INSTALL_LIB_DIR}/unixport/saved_gcl -dir ${INSTALL_LIB_DIR}/unixport/ -libdir ${INSTALL_LIB_DIR}/ >> \
${PREFIX_DIR}/bin/gcl)
chmod a+x ${PREFIX_DIR}/bin/gcl