aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay <raysan5@gmail.com>2016-07-30 10:03:32 +0200
committerRay <raysan5@gmail.com>2016-07-30 10:03:32 +0200
commit13ebc745fe05d08c58ae2cfee1b73a05b1f70463 (patch)
treee0705109c57ca1ef398f78e324ad49bb5b89be3e
parenta008d49230c0f7543d8921e68f757dea7934a8c5 (diff)
downloadraylib-13ebc745fe05d08c58ae2cfee1b73a05b1f70463.tar.gz
raylib-13ebc745fe05d08c58ae2cfee1b73a05b1f70463.zip
Corrected bug on Linux linking
-rw-r--r--examples/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Makefile b/examples/Makefile
index b4bc0411..e10b0bb6 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -139,7 +139,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
# libraries for Debian GNU/Linux desktop compiling
# requires the following packages:
# libglfw3-dev libopenal-dev libegl1-mesa-dev
- LIBS = -lraylib -lglfw3 -lGL -lopenal -lm -pthread -ldl
+ LIBS = -lraylib -lglfw3 -lGL -lopenal -lm -lpthread -ldl
# on XWindow could require also below libraries, just uncomment
#LIBS += -lX11 -lXrandr -lXinerama -lXi -lXxf86vm -lXcursor
else