summaryrefslogtreecommitdiff
path: root/libs/clearlooks-newer
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2015-02-19 20:33:46 +1000
committerTim Mayberry <mojofunk@gmail.com>2015-03-12 23:03:59 +1000
commit5476b48539089cae59facc4df27cd1267c0e4be9 (patch)
treeafb7844154ff4c7207179f838d992134422503ee /libs/clearlooks-newer
parent47b1c2889cef40f60f8c39da87eadebee35b27b6 (diff)
Don't try linking libclearlooks files with mingw build
I believe this is unnecessary for cross and native builds
Diffstat (limited to 'libs/clearlooks-newer')
-rw-r--r--libs/clearlooks-newer/wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/clearlooks-newer/wscript b/libs/clearlooks-newer/wscript
index 6ef94e3aff..36637971b1 100644
--- a/libs/clearlooks-newer/wscript
+++ b/libs/clearlooks-newer/wscript
@@ -42,7 +42,7 @@ def build(bld):
# Bit of a hack: make a symlink to the .dylib that meets GTK's criteria for finding it (namely that the library must be a *.so
# and that it must reside in a directory called `engines')
obj = bld(target = 'engines', rule = 'mkdir -p ${TGT} && rm -f ${TGT}/libclearlooks.so && ln -s ../libclearlooks.dylib ${TGT}/libclearlooks.so')
- else:
+ elif bld.env['build_target'] != 'mingw':
# this is a hack so that running ./ardev will work, since it sets GTK_PATH to include this dir and GTK will search {thisdir}/engines
obj = bld(target = 'engines', rule = 'mkdir -p ${TGT} && rm -f ${TGT}/libclearlooks.so && ln -s ../libclearlooks.so ${TGT}/libclearlooks.so')