mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-11 17:59:03 +00:00
12 lines
216 B
Bash
12 lines
216 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
FILENAME=../RyzomCompilerFlags.mk.$(hostname -s)
|
||
|
|
||
|
if [ -e $FILENAME ]
|
||
|
then
|
||
|
echo RYZOM_VERSION_COMPILER_FLAGS=$(cat $FILENAME)
|
||
|
else
|
||
|
echo ERROR: File not found $FILENAME
|
||
|
exit 1
|
||
|
fi
|