aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias C. Berner <tcberner@FreeBSD.org>2022-03-27 14:54:02 +0000
committerTobias C. Berner <tcberner@FreeBSD.org>2022-03-27 15:07:43 +0000
commit9cfa411670f16ee5f33d5c48f7a30b933f6333c5 (patch)
tree564df92357ac4a9d948af408003ce5a8b4acf5e3
parentc6e800ad6e507b3bb475221080f968c390474b77 (diff)
downloadports-9cfa411670f16ee5f33d5c48f7a30b933f6333c5.tar.gz
ports-9cfa411670f16ee5f33d5c48f7a30b933f6333c5.zip
graphics/gdk-pixbuf2: fix trigger
The change in bd08b1edde618be0d9644299561b696a507a446f was incomplete, and did wrote the cache to stdout instead of the standard location on the filesystem.
-rw-r--r--graphics/gdk-pixbuf2/Makefile2
-rw-r--r--graphics/gdk-pixbuf2/files/gdk-pixbuf-query-loaders.ucl.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/graphics/gdk-pixbuf2/Makefile b/graphics/gdk-pixbuf2/Makefile
index 17c1e597d833..cda5d0dc6752 100644
--- a/graphics/gdk-pixbuf2/Makefile
+++ b/graphics/gdk-pixbuf2/Makefile
@@ -2,7 +2,7 @@
PORTNAME= gdk-pixbuf
PORTVERSION= 2.40.0
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= graphics
MASTER_SITES= GNOME
PKGNAMESUFFIX= 2
diff --git a/graphics/gdk-pixbuf2/files/gdk-pixbuf-query-loaders.ucl.in b/graphics/gdk-pixbuf2/files/gdk-pixbuf-query-loaders.ucl.in
index 814bf2d40b72..eae70e206be9 100644
--- a/graphics/gdk-pixbuf2/files/gdk-pixbuf-query-loaders.ucl.in
+++ b/graphics/gdk-pixbuf2/files/gdk-pixbuf-query-loaders.ucl.in
@@ -12,6 +12,6 @@ trigger: {
sandbox: false
script: <<EOS
print("Generating gdk-pixbuf modules cache")
-pkg.exec({"%%PREFIX%%/bin/gdk-pixbuf-query-loaders"})
+pkg.exec({"%%PREFIX%%/bin/gdk-pixbuf-query-loaders", "--update-cache"})
EOS
}