Skip to content

Commit 2afc269

Browse files
authored
Merge pull request #198 from apache/move-nouveau
feat: support nouveau living in ./ (old) and ./extra (new)
2 parents 0de2640 + d8d3bd6 commit 2afc269

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

debian/rules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ override_dh_auto_clean:
2222
-mv src/mango/src/mango_cursor_text.nocompile src/mango/src/mango_cursor_text.erl
2323

2424
override_dh_auto_configure:
25-
if [ -d "./nouveau" ]; then \
25+
if [ -d "./nouveau" -o -d "./extra/nouveau" ]; then \
2626
./configure --spidermonkey-version $(SM_VER) --with-nouveau; \
2727
else \
2828
./configure --spidermonkey-version $(SM_VER); \

rpm/SPECS/couchdb.spec.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ languages and environments.
7474
%prep
7575

7676
%build
77-
if [ -d ./nouveau ]; then
77+
if [ -d ./nouveau -o -d ./extra/nouveau ]; then
7878
./configure --spidermonkey-version=%SM_VER% --with-nouveau
7979
else
8080
./configure --spidermonkey-version=%SM_VER%

0 commit comments

Comments
 (0)