Author: wyoung
Date: Sat Mar 4 06:40:20 2006
New Revision: 1213
URL: http://svn.gna.org/viewcvs/mysqlpp?rev=1213&view=rev
Log:
Bug fix: uninstall target would remove *.h from header install
directory, which is fine if you install MySQL++ headers into their own
directory, but disastrous if you commingle them with other headers!
Modified:
branches/v2.1-bakefile/lib/lib.bkl
Modified: branches/v2.1-bakefile/lib/lib.bkl
URL:
http://svn.gna.org/viewcvs/mysqlpp/branches/v2.1-bakefile/lib/lib.bkl?rev=1213&r1=1212&r2=1213&view=diff
==============================================================================
--- branches/v2.1-bakefile/lib/lib.bkl (original)
+++ branches/v2.1-bakefile/lib/lib.bkl Sat Mar 4 06:40:20 2006
@@ -1,5 +1,7 @@
<?xml version="1.0"?>
<makefile>
+ <requires version="0.2.0"/> <!-- for fileList() -->
+
<include file="../common.bkl"/>
<using module="datafiles"/>
@@ -35,7 +37,9 @@
<command>
rm -f
$(DESTDIR)$(libdir)/$(DLLPREFIX)mysqlpp.$(SO_SUFFIX)
</command>
- <command>rm -f $(HEADER_DIR)/*.h</command>
+ <command>
+ for f in *.h ; do rm -f
$(HEADER_DIR)/$(DBLDOLLAR)f ; done
+ </command>
<command>rmdir $(HEADER_DIR)</command>
</modify-target>
</if>
_______________________________________________
Mysqlpp-commits mailing list
[email protected]
https://mail.gna.org/listinfo/mysqlpp-commits