Skip to content

Commit

Permalink
Adrian Pop, adrpo@ida.liu.se, 206-02-01
Browse files Browse the repository at this point in the history
Fixed the rmldep.sh script. It had a little problem.

git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@2063 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Feb 1, 2006
1 parent f6d9460 commit c8caef3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Compiler/rml2sig/rmldep.sh
Expand Up @@ -9,12 +9,12 @@
mydir="`dirname $0`"

if [ ! "$#" -eq 1 ]; then
echo "Usage: $0 <file>.mo";
echo "Usage: $0 <file>.(mo|rml)";
exit;
fi

tmp_file="$1.$$"
if [ "mo" = $(OMC_BUILD_FROM) ]; then
if [ "mo" = "${OMC_BUILD_FROM}" ]; then
sig_file="`basename "$1" ".mo"`.rsig"
else
sig_file="`basename "$1" ".rml"`.rsig"
Expand Down

0 comments on commit c8caef3

Please sign in to comment.