Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix dependency tree in Makefile to ensure schema is built *after* it's dropped when running in parallel #787

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -134,15 +134,15 @@ zip-file.clean:

PHONY += extension extension.clean _drop-gschemas

extension: _drop-gschemas ./$(UUID)/schemas/gschemas.compiled
extension: ./$(UUID)/schemas/gschemas.compiled
$(call msg,$@,OK)

clean:: extension.clean
extension.clean:
$(Q)git checkout -f -- ./$(UUID)/schemas/gschemas.compiled
$(call msg,$@,OK)

./$(UUID)/schemas/gschemas.compiled: ./$(UUID)/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml
./$(UUID)/schemas/gschemas.compiled: _drop-gschemas ./$(UUID)/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml
$(Q)glib-compile-schemas ./$(UUID)/schemas/
$(call msg,gschemas,OK)

Expand Down