Skip to content
This repository has been archived by the owner on Feb 28, 2023. It is now read-only.

Commit

Permalink
Debug Universal Ctags for Centos
Browse files Browse the repository at this point in the history
  • Loading branch information
xlz-jbleclere committed Jun 9, 2020
1 parent ca3360e commit b8dd8bf
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -359,12 +359,25 @@
chdir: "{{ ctags_tmp.path }}"
with_items:
- ./autogen.sh
#- ./configure --prefix=/usr
- ./configure --prefix=/usr
- make -j
- make install
when:
- ansible_os_family == "RedHat"
- accelize_drm_abi_check | bool
tags: molecule-idempotence-notest

- name: Build and install Universal Ctags
command: "{{ item }}"
args:
chdir: "{{ ctags_tmp.path }}"
with_items:
- ./autogen.sh
- ./configure
- make -j
- make install
when:
#- ansible_os_family == "RedHat"
- ansible_os_family == "Debian"
- accelize_drm_abi_check | bool
tags: molecule-idempotence-notest

Expand Down

0 comments on commit b8dd8bf

Please sign in to comment.