summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 a0f356d..a3f37e5 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 8b178a4..b471259 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 9d0c824..cab4e86 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 493fe9f..e546f50 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