Skip to content

Commit 7c668c3

Browse files
committed
Actions (Linux): Avoid VPATH build for "make dist"
.. because file po/Makevars is apparantly not inserted into file po/Makefile in VPATH builds. Error was: > (cd po && make top_distdir=../libvisual-0.4.0 distdir=../libvisual-0.4.0/po \ > am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) > make[3]: *** No rule to make target '/config.status', needed by 'Makefile'. Stop. Related: - https://bugs.launchpad.net/ubuntu/+source/gettext/+bug/122343 - https://bugzilla.redhat.com/show_bug.cgi?id=65008
1 parent a9fe03c commit 7c668c3

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

.github/workflows/linux.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -87,17 +87,16 @@ jobs:
8787
8888
- name: '[LV] Run "./configure" (from Git)'
8989
run: |-
90-
mkdir dist_lv
91-
cd dist_lv
92-
../libvisual/configure
90+
cd libvisual
91+
./configure
9392
9493
- name: '[LV] Run "make dist"'
9594
run: |-
96-
make -C dist_lv dist
95+
make -C libvisual dist
9796
9897
- name: '[LV] Run "./configure" (from tarball)'
9998
run: |-
100-
tar xf dist_lv/libvisual-0.*.tar.gz
99+
tar xf libvisual/libvisual-0.*.tar.gz
101100
mkdir build_lv
102101
cd build_lv
103102
../libvisual-0.*/configure \
@@ -118,20 +117,19 @@ jobs:
118117
119118
- name: '[Plugins] Run "./configure" (from Git)'
120119
run: |-
121-
mkdir dist_plugins
122-
cd dist_plugins
120+
cd libvisual-plugins
123121
PKG_CONFIG_PATH=${LV_INSTALL_PREFIX}/lib/pkgconfig/ \
124-
../libvisual-plugins/configure \
122+
./configure \
125123
--disable-gstreamer-plugin \
126124
127125
- name: '[Plugins] Run "make dist"'
128126
run: |-
129-
make -C dist_plugins dist
127+
make -C libvisual-plugins dist
130128
131129
- name: '[Plugins] Run "./configure" (from tarball)'
132130
# TODO Make gstreamer plugin work with GStreamer 1.x (on master!)
133131
run: |-
134-
tar xf dist_plugins/libvisual-plugins-0.*.tar.gz
132+
tar xf libvisual-plugins/libvisual-plugins-0.*.tar.gz
135133
mkdir build_plugins
136134
cd build_plugins
137135
PKG_CONFIG_PATH=${LV_INSTALL_PREFIX}/lib/pkgconfig/ \

0 commit comments

Comments
 (0)