summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-12-29 23:18:20 +0000
committerFlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-12-29 23:18:20 +0000
commita2b44a8872f55a3afe16ad20682bbc4f6c685a87 (patch)
treec46500d97462b3c9b5c95dfdeb2dff3fba828b80
parent777113f0520a1b9c1e8a9caa2682218b27c8e06a (diff)
downloadhercules-a2b44a8872f55a3afe16ad20682bbc4f6c685a87.tar.gz
hercules-a2b44a8872f55a3afe16ad20682bbc4f6c685a87.tar.bz2
hercules-a2b44a8872f55a3afe16ad20682bbc4f6c685a87.tar.xz
hercules-a2b44a8872f55a3afe16ad20682bbc4f6c685a87.zip
* Fixed two missing @LDFLAGS@ in src/plugins/Makefile.in.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11993 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog-Trunk.txt1
-rw-r--r--src/plugins/Makefile.in4
2 files changed, 3 insertions, 2 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 790bfbc36..ba9d1459c 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2007/12/29
+
* Implemented THE official Steal skill equation and game mechanics
(basically version from /stable plus a few tweaks) (see topic:116540)
* Added missing bAddStealRate reference to doc/item_bonus.txt
diff --git a/src/plugins/Makefile.in b/src/plugins/Makefile.in
index 7019fadd8..c21bcd7d9 100644
--- a/src/plugins/Makefile.in
+++ b/src/plugins/Makefile.in
@@ -44,13 +44,13 @@ help:
#####################################################################
%@DLLEXT@: %.c
- @CC@ @CFLAGS@ @CPPFLAGS@ -shared -o ../../plugins/$@ $<
+ @CC@ @CFLAGS@ @CPPFLAGS@ @LDFLAGS@ -shared -o ../../plugins/$@ $<
gui@DLLEXT@: ../../plugins/gui.conf
upnp@DLLEXT@: ../../plugins/upnp.conf
sig@DLLEXT@: sig.c $(COMMON_OBJ)
- @CC@ @CFLAGS@ @CPPFLAGS@ -shared -o ../../plugins/$@ $< $(COMMON_OBJ)
+ @CC@ @CFLAGS@ @CPPFLAGS@ @LDFLAGS@ -shared -o ../../plugins/$@ $< $(COMMON_OBJ)
../../plugins/%.conf: %.txt
cp -r $< $@