From 6d3c712bec4148578de900b9169f410bdad97876 Mon Sep 17 00:00:00 2001 From: Makise Kurisu Date: Mon, 19 Jan 2015 19:29:35 +0100 Subject: [PATCH] Changed workdir-ghdl filename --- vcom/main.cpp | 2 +- vsim/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vcom/main.cpp b/vcom/main.cpp index 9a841a6..ec9cc52 100644 --- a/vcom/main.cpp +++ b/vcom/main.cpp @@ -152,7 +152,7 @@ int main(int argc, char **argv) // Write temp path to /tmp ofstream myfile; - myfile.open ("/tmp/workdir-ghdl"); + myfile.open ("/tmp/ghdl-workdir"); myfile << tempdir; myfile.flush(); myfile.close(); diff --git a/vsim/main.cpp b/vsim/main.cpp index 6fe7a8a..009b33e 100644 --- a/vsim/main.cpp +++ b/vsim/main.cpp @@ -81,7 +81,7 @@ int main(int argc, char **argv) { char tempdir[256] = ""; // Compile dir ifstream myfile; - myfile.open ("/tmp/workdir-ghdl"); + myfile.open ("/tmp/ghdl-workdir"); myfile.getline(tempdir, sizeof(tempdir)); myfile.close();