From e85cec8db3df68a66f76769350c8994164abe92d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Fra=C3=9F?= Date: Thu, 22 Aug 2024 08:09:42 +0200 Subject: [PATCH] [mod] tools:building:default directories --- tools/build | 5 ++++- tools/makefile | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/tools/build b/tools/build index 95fe086..6c447ee 100755 --- a/tools/build +++ b/tools/build @@ -13,6 +13,7 @@ # You should have received a copy of the GNU General Public License along with this program. If not, see # . +import sys as _sys import os as _os import argparse as _argparse @@ -31,7 +32,7 @@ def main(): "-o", "--output-directory", type = str, - default = "build", + default = "/tmp/espe-backend", metavar = "", help = "output directory", ) @@ -49,6 +50,8 @@ def main(): " ".join(targets), ) ) + _sys.stdout.write("%s\n" % args.output_directory) main() + diff --git a/tools/makefile b/tools/makefile index 77cce12..b1d276b 100644 --- a/tools/makefile +++ b/tools/makefile @@ -16,7 +16,7 @@ dir_lib := lib dir_source := source -dir_temp := temp +dir_temp := /tmp/espe-backend-temp dir_build := build dir_tools := tools