summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vidix/drivers/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/vidix/drivers/Makefile b/vidix/drivers/Makefile
index 244e34245d..f6ec985422 100644
--- a/vidix/drivers/Makefile
+++ b/vidix/drivers/Makefile
@@ -123,7 +123,7 @@ $(SIS_OBJS): $(SIS_SRCS)
$(CC) -c $(SIS_CFLAGS) -o $@ $(basename $@).c
$(SIS_VID): $(SIS_OBJS)
- $(LD) -g $(SIS_LIBS) -shared -soname $(SIS_VID) -o $(SIS_VID) $(SIS_OBJS)
+ $(CC) -shared $(SIS_OBJS) $(SIS_LIBS) -Wl,-soname,$(SIS_VID) -o $(SIS_VID)
clean:
rm -f *.o *.so *~