Made changes to lineterm, especially the PTY code, to get it to compile on FreeBSD (bug 32923). Now it does compile and run on FreeBSD. There still a few glitches though; PTY resizing fails in FreeBSD, for example. git-svn-id: svn://10.0.0.236/trunk@64914 18797224-902f-48f8-a5cc-f745e15eee43
39 lines
760 B
Tcsh
Executable File
39 lines
760 B
Tcsh
Executable File
#!/bin/csh
|
|
# makemake: Dumb script to make Makefile from Makefile.in
|
|
# (recursively, if -r is specified)
|
|
# Usage: makemake [-r]
|
|
|
|
if ($#argv == 0) then
|
|
set makelist = (./Makefile.in)
|
|
else
|
|
set makelist = (`find . -name Makefile.in -print`)
|
|
endif
|
|
|
|
foreach makefile ($makelist)
|
|
set dir=${makefile:h}
|
|
pushd $dir
|
|
|
|
set wd=`pwd`
|
|
echo $wd
|
|
|
|
set top_srcdir = ""
|
|
while (("$wd" != "") && (${wd:t} != "mozilla"))
|
|
if ("$top_srcdir" == "") then
|
|
set top_srcdir = ".."
|
|
else
|
|
set top_srcdir = "../$top_srcdir"
|
|
endif
|
|
set wd=${wd:h}
|
|
end
|
|
|
|
/bin/cp Makefile.in Makefile
|
|
ex -s Makefile << /EOF
|
|
set nomagic
|
|
g%@srcdir@%s%@srcdir@%.%gp
|
|
g%@top_srcdir@%s%@top_srcdir@%${top_srcdir}%gp
|
|
wq
|
|
/EOF
|
|
|
|
popd
|
|
end
|