Skip to content

Commit df376a8

Browse files
committed
ode4linux: ode-ppcbootstrap.patch
Fourth patch. Signed-off-by: Andrei Warkentin <andrey.warkentin@gmail.com>
1 parent 1808137 commit df376a8

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

src/ode/bin/make/bootstrap.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,10 @@ case $context in
143143
TARGET_FLAGS="-DNO_RANLIB"
144144
ARCHIVE_FORMAT=BSDARCH;
145145
CC=cc;;
146+
"ppc_linux") MACHINE="ppc"
147+
TARGET_FLAGS="-DNO_RANLIB"
148+
ARCHIVE_FORMAT=LINUXARCH;
149+
CC=cc;;
146150
"pmax_ultrix") MACHINE="mips" ;
147151
ARCHIVE_FORMAT=BSDARCH ;
148152
NO_STRDUP=NO_STRDUP ;

src/ode/setup/setup.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,20 @@ then
193193
else
194194
mkdir ${objdir}
195195
fi
196+
log=${base}/log
197+
if [ -d ${log} ]
198+
then
199+
true
200+
else
201+
mkdir ${log}
202+
fi
203+
logdir=${log}/${context}
204+
if [ -d ${logdir} ]
205+
then
206+
true
207+
else
208+
mkdir ${logdir}
209+
fi
196210
exp=${base}/export
197211
if [ -d ${exp} ]
198212
then

0 commit comments

Comments
 (0)