From 1580876b1598f92d2a45dc646d0883c51bce4bb7 Mon Sep 17 00:00:00 2001 From: cxd4 Date: Fri, 5 Feb 2016 03:32:43 -0500 Subject: [PATCH] [Common] leftover remnant of Win32 command shell I found out the hard way while getting `libglitch64.a` to link into PJ64 Glide64 on Linux that I was getting an 8-byte static library file. This was because the Unix shell variable `$OBJ_LIST` was null, due to using the `set` keyword which was a result of lazy copy pasta while porting my MinGW script to compile the PJ64 Common library on Windows. --- Source/Script/Unix/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Script/Unix/common.sh b/Source/Script/Unix/common.sh index 11fdb8393..c5bcaf6c6 100755 --- a/Source/Script/Unix/common.sh +++ b/Source/Script/Unix/common.sh @@ -40,7 +40,7 @@ $AS -o $obj/SyncEvent.o $obj/SyncEvent.asm $AS -o $obj/Trace.o $obj/Trace.asm $AS -o $obj/Util.o $obj/Util.asm -set OBJ_LIST="\ +OBJ_LIST="\ $obj/Util.o \ $obj/Trace.o \ $obj/SyncEvent.o \