Browse Source

* Ported [2655] to 1.2.9 (More OpenBSD buildts fixes)

svn: 2656
Bryan Drewery 20 năm trước cách đây
mục cha
commit
2ae29f63fe
2 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 1 1
      build
  2. 1 1
      misc/getts.sh

+ 1 - 1
build

@@ -18,7 +18,7 @@ fi
 ver="?.?.?"
 ver=`grep "char" src/main.c | $AWK '/egg_version/ {print $5}' | sed -e 's/\"//g' | sed -e 's/\;//g'`
 rm -f ts ts.exe
-gcc -o ts misc/ts.c
+gcc -o ts misc/ts.c > /dev/null 2>&1
 BUILDTS=`./ts \`misc/getdate.sh\``
 builddate=`./ts ${BUILDTS}`
 rm -f ts ts.exe

+ 1 - 1
misc/getts.sh

@@ -1,7 +1,7 @@
 #! /bin/sh
 
 rm -f ts ts.exe
-gcc -o ts misc/ts.c
+gcc -o ts misc/ts.c > /dev/null 2>&1
 date=$(misc/getdate.sh)
 ./ts $date
 rm -f ts ts.exe