Skip to content

Commit

Permalink
Bootstrap corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
CordyJ committed Oct 21, 2022
1 parent 797b085 commit 6184faf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions src/distrib/InstallTplus.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ echo /bin/rm -rf /usr/local/include/tplus/*
/bin/rm -rf /usr/local/include/tplus/*

echo ""
echo /bin/cp -r usr/local/include/tplus/* /usr/local/include/tplus
/bin/cp -r usr/local/include/tplus/* /usr/local/include/tplus
echo /bin/cp -r include/* /usr/local/include/tplus
/bin/cp -r include/* /usr/local/include/tplus

# install lib files
mkdir -p /usr/local/lib/tplus
Expand All @@ -20,8 +20,8 @@ echo /bin/rm -rf /usr/local/lib/tplus/*
/bin/rm -rf /usr/local/lib/tplus/*

echo ""
echo /bin/cp -r usr/local/lib/tplus/* /usr/local/lib/tplus
/bin/cp -r usr/local/lib/tplus/* /usr/local/lib/tplus
echo /bin/cp -r lib/* /usr/local/lib/tplus
/bin/cp -r lib/* /usr/local/lib/tplus

echo ""
echo ranlib /usr/local/lib/tplus/*.a
Expand All @@ -35,8 +35,8 @@ echo /bin/rm -f /usr/local/bin/tpc /usr/local/bin/tssl
/bin/rm -f /usr/local/bin/tpc /usr/local/bin/tssl

echo ""
echo /bin/cp usr/local/bin/* /usr/local/bin
/bin/cp usr/local/bin/* /usr/local/bin
echo /bin/cp bin/* /usr/local/bin
/bin/cp bin/* /usr/local/bin

# Enable the Turing+ commands in MacOS
if [ `uname -s` = Darwin ]; then
Expand Down
4 changes: 2 additions & 2 deletions src/tlib/generic/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
/* JRC 24.4.14 */

#ifdef UNIX32
#include <UNIX32/cinterface>
#include <UNIX32/cinterface.h>
#else /* UNIX64 */
#include <UNIX64/cinterface>
#include <UNIX64/cinterface.h>
#endif

int main (argc, argv)
Expand Down

0 comments on commit 6184faf

Please sign in to comment.