diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-24 22:13:37 -0500 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-24 22:22:17 -0500 |
| commit | bf2c4bc8c719159b4ddd1b40e032c449424abd5d (patch) | |
| tree | 6be8255399cc3e95637c0cd7817ff4c19de02ae6 /make_dist_linux.sh | |
| parent | 20748b34ad43f69ec127a4caab05196e2fd38705 (diff) | |
feat: distribution script fixed, improved linux compat, and extended network unit tests.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'make_dist_linux.sh')
| -rwxr-xr-x | make_dist_linux.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/make_dist_linux.sh b/make_dist_linux.sh index ab78915..d576b98 100755 --- a/make_dist_linux.sh +++ b/make_dist_linux.sh @@ -20,12 +20,12 @@ outputDirTools=dist/ for f in include/ocl/*/*.hpp; do baseName=`echo $f | cut -d "." -f 1` -echo "RUN:" cp $f $outputDir$baseName -cp $f $outputDirCmd$baseName +echo "RUN:" cp $f $outputDir$baseName'.hpp' +cp $f $outputDirCmd$baseName'.hpp' done for f in tools/*.py; do baseName=`echo $f | cut -d "." -f 1` -echo "RUN:" cp $baseName'.py' $outputDirTools$baseName +echo "RUN:" cp $baseName'.py' $outputDirTools$baseName'.py' cp $baseName'.py' $outputDirTools$baseName'.py' done |
