summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Pogonyshev <pogonyshev@gmx.net>2009-04-29 21:46:31 +0300
committerPaul Pogonyshev <pogonyshev@gmx.net>2009-04-29 21:46:31 +0300
commit96f958cd66ac99130ef7b2049db77b6a9bbb20f9 (patch)
treef12acac4fba9ada7e072e31bab68f1fd708ca5ac
parent38f3debf5568e8078dc41e2f6979c0dce6a19075 (diff)
downloadpygobject-96f958cd66ac99130ef7b2049db77b6a9bbb20f9.tar.gz
Fix occasional build failures after the 'ltihooks.py' removal
Simply amend all related symbolic link creation so that any errors are ignored.
-rw-r--r--gio/Makefile.am2
-rw-r--r--glib/Makefile.am2
-rw-r--r--gobject/Makefile.am2
-rw-r--r--tests/Makefile.am2
4 files changed, 4 insertions, 4 deletions
diff --git a/gio/Makefile.am b/gio/Makefile.am
index a0f356da..a3f37e5c 100644
--- a/gio/Makefile.am
+++ b/gio/Makefile.am
@@ -100,5 +100,5 @@ all: $(pkgpyexec_LTLIBRARIES:.la=.so)
clean-local:
rm -f $(pkgpyexec_LTLIBRARIES:.la=.so)
.la.so:
- $(LN_S) .libs/$@ $@
+ $(LN_S) .libs/$@ $@ || true
endif
diff --git a/glib/Makefile.am b/glib/Makefile.am
index 8b178a45..b4712590 100644
--- a/glib/Makefile.am
+++ b/glib/Makefile.am
@@ -56,4 +56,4 @@ all: $(pyglib_LTLIBRARIES:.la=.so)
clean-local:
rm -f $(pyglib_LTLIBRARIES:.la=.so)
.la.so:
- $(LN_S) .libs/$@ $@
+ $(LN_S) .libs/$@ $@ || true
diff --git a/gobject/Makefile.am b/gobject/Makefile.am
index 9d0c824c..cab4e86f 100644
--- a/gobject/Makefile.am
+++ b/gobject/Makefile.am
@@ -77,4 +77,4 @@ all: $(pygobject_LTLIBRARIES:.la=.so)
clean-local:
rm -f $(pygobject_LTLIBRARIES:.la=.so)
.la.so:
- $(LN_S) .libs/$@ $@
+ $(LN_S) .libs/$@ $@ || true
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 493fe9fa..e546f504 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -62,4 +62,4 @@ all: $(LTLIBRARIES:.la=.so)
clean-local:
rm -f $(LTLIBRARIES:.la=.so)
.la.so:
- $(LN_S) .libs/$@ $@
+ $(LN_S) .libs/$@ $@ || true