mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
overrides: Force symlinks when making
Making make distcheck pass
This commit is contained in:
parent
2ac104ea94
commit
637fdac676
1 changed files with 2 additions and 2 deletions
|
@ -24,7 +24,7 @@ _gi_gst_la_LDFLAGS = $(common_ldflags)
|
||||||
# paths
|
# paths
|
||||||
build_pylinks:
|
build_pylinks:
|
||||||
for f in $(pygioverrides_PYTHON) __init__.py; do \
|
for f in $(pygioverrides_PYTHON) __init__.py; do \
|
||||||
[ -e $(builddir)/$$f ] || $(LN_S) $(srcdir)/$$f $(builddir)/$$f; \
|
[ -e $(builddir)/$$f ] || $(LN_S) -f $(srcdir)/$$f $(builddir)/$$f; \
|
||||||
done
|
done
|
||||||
|
|
||||||
all: $(pygioverridesexec_LTLIBRARIES:.la=.so) build_pylinks
|
all: $(pygioverridesexec_LTLIBRARIES:.la=.so) build_pylinks
|
||||||
|
@ -32,4 +32,4 @@ check-local: $(pygioverridesexec_LTLIBRARIES:.la=.so) build_pylinks
|
||||||
clean-local:
|
clean-local:
|
||||||
rm -f $(pygioverridesexec_LTLIBRARIES:.la=.so)
|
rm -f $(pygioverridesexec_LTLIBRARIES:.la=.so)
|
||||||
.la.so:
|
.la.so:
|
||||||
$(LN_S) .libs/$@ $@ || true
|
$(LN_S) -f .libs/$@ $@ || true
|
||||||
|
|
Loading…
Reference in a new issue