[gimp-help] build: some status targets failed when srcdir != builddir
- From: Jacob Boerema <jboerema src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp-help] build: some status targets failed when srcdir != builddir
- Date: Fri, 4 Jun 2021 21:07:32 +0000 (UTC)
commit 26871f4a5930accef3134d47e4fbee6c0028a89f
Author: Jacob Boerema <jgboerema gmail com>
Date: Fri Jun 4 17:06:40 2021 -0400
build: some status targets failed when srcdir != builddir
Makefile.am | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/Makefile.am b/Makefile.am
index 950828dd4..7681f326b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -464,11 +464,11 @@ po-en: ;
status-%: po-status-% ;
po-status-%: po-%
- $(cmd) perl $(srcdir)/tools/get_po_status.pl po/$*
+ $(cmd) perl $(srcdir)/tools/get_po_status.pl $(srcdir)/po/$*
status-all: po-status-all ;
po-status-all:
- $(cmd) for podir in po/*; do \
+ $(cmd) for podir in $(srcdir)/po/*; do \
perl $(srcdir)/tools/get_po_status.pl \
--nofiles --nosummary $${podir} \
|| break; \
@@ -476,7 +476,7 @@ po-status-all:
todo-%: po-todo-% ;
po-todo-%: po-%
- $(cmd) perl $(srcdir)/tools/get_po_status.pl --todo po/$*
+ $(cmd) perl $(srcdir)/tools/get_po_status.pl --todo $(srcdir)/po/$*
# Main commandline target
po: $(foreach LANG,$(PO_LANGS),po-$(LANG)) ;
@@ -962,7 +962,7 @@ check-images-%: FORCE
$(cmd) $(RMAKE) check-image-references IMAGE_LANGS="C $*"
check-image-resolutions-%:
- $(cmd) /bin/sh tools/check_image_resolutions.sh images/$*
+ $(cmd) /bin/sh $(srcdir)/tools/check_image_resolutions.sh $(srcdir)/images/$*
# special case 'en':
check-images-en check-images-C: check-image-references ;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]