File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ruby3.4 (3.4.1-1ppa5) focal; urgency=medium
2+
3+ [ Aaron Ogata ]
4+ * only run check if parent directory isn’t symlink
5+
6+ -- root <aogata@instructure.com> Tue, 04 Feb 2025 10:20:03 -0800
7+
18ruby3.4 (3.4.1-1ppa4) focal; urgency=medium
29
310 [ Aaron Ogata ]
Original file line number Diff line number Diff line change @@ -9,8 +9,12 @@ archlibdir=usr/lib/${arch}
99
1010# files that should NOT exist
1111test ' !' -f debian/tmp/${libdir} /libruby-${RUBY_VERSION} .so.${RUBY_VERSION}
12- ls -la debian/tmp/${libdir} /pkgconfig
13- test ' !' -f debian/tmp/${libdir} /pkgconfig/ruby-${RUBY_VERSION} .pc
12+
13+ # only run if this is not a symbolic link
14+ # https://github.com/ruby/ruby/commit/120c291fafd438e2bc58f098023c669dadc64b08
15+ if [ ! -L " debian/tmp/${libdir} /pkgconfig" ]; then
16+ test ' !' -f " debian/tmp/${libdir} /pkgconfig/ruby-${RUBY_VERSION} .pc"
17+ fi
1418
1519# files that should exist
1620ls -1 debian/tmp/${archlibdir} /libruby-${RUBY_VERSION} .so.${RUBY_VERSION}
You can’t perform that action at this time.
0 commit comments