diff options
author | Alan Somers <asomers@FreeBSD.org> | 2019-12-01 23:50:23 +0800 |
---|---|---|
committer | Alan Somers <asomers@FreeBSD.org> | 2019-12-01 23:50:23 +0800 |
commit | cd2f604c6e534182d2ea1161ebfc26e2c297d1c7 (patch) | |
tree | d2f9e3b2c81843f957bfc1abefe24621cb69d097 | |
parent | 13c31ef89d848ea32c23fc8c42998d54a76fd0be (diff) | |
download | freebsd-ports-gnome-cd2f604c6e534182d2ea1161ebfc26e2c297d1c7.tar.gz freebsd-ports-gnome-cd2f604c6e534182d2ea1161ebfc26e2c297d1c7.tar.zst freebsd-ports-gnome-cd2f604c6e534182d2ea1161ebfc26e2c297d1c7.zip |
emulators/qemu-utils: fix build after r518397
PR: 242279
Reported by: pkg-fallout
-rw-r--r-- | emulators/qemu-utils/Makefile | 4 | ||||
-rw-r--r-- | emulators/qemu-utils/files/patch-Makefile | 6 | ||||
-rw-r--r-- | emulators/qemu-utils/files/patch-configure | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/emulators/qemu-utils/Makefile b/emulators/qemu-utils/Makefile index e6dee95386ae..066ab25e0eeb 100644 --- a/emulators/qemu-utils/Makefile +++ b/emulators/qemu-utils/Makefile @@ -22,10 +22,9 @@ DESCR= ${.CURDIR}/pkg-descr EXTRA_PATCHES= ${.CURDIR}/files/patch-configure PKGMESSAGE= -PORTDOCS= qemu-doc.html qemu-doc.txt +PORTDOCS= interop/* specs/* CONFIGURE_ARGS?=--localstatedir=/var --extra-ldflags=-L\"${LOCALBASE}/lib\" \ - --disable-libssh2 \ --mandir=${MANPREFIX}/man \ --prefix=${PREFIX} --cc=${CC} --disable-kvm \ --disable-linux-user --disable-linux-aio --disable-xen \ @@ -86,5 +85,6 @@ pre-configure: post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/qemu-* @${RMDIR} ${STAGEDIR}${DATADIR} + @${RM} -rf ${STAGEDIR}${PREFIX}/share .include "${MASTERDIR}/Makefile" diff --git a/emulators/qemu-utils/files/patch-Makefile b/emulators/qemu-utils/files/patch-Makefile index ca87881dba28..95a3110abd24 100644 --- a/emulators/qemu-utils/files/patch-Makefile +++ b/emulators/qemu-utils/files/patch-Makefile @@ -41,6 +41,6 @@ - $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \ - done - $(INSTALL_DATA) $(BUILD_DIR)/trace-events-all "$(DESTDIR)$(qemu_datadir)/trace-events-all" - for d in $(TARGET_DIRS); do \ - $(MAKE) $(SUBDIR_MAKEFLAGS) TARGET_DIR=$$d/ -C $$d $@ || exit 1 ; \ - done + + .PHONY: ctags + ctags: diff --git a/emulators/qemu-utils/files/patch-configure b/emulators/qemu-utils/files/patch-configure index 3d69293d3e2b..a4ffd8f03a38 100644 --- a/emulators/qemu-utils/files/patch-configure +++ b/emulators/qemu-utils/files/patch-configure @@ -4,7 +4,7 @@ ########################################## # pixman support probe --if test "$want_tools" = "no" -a "$softmmu" = "no"; then +-if test "$want_tools" = "no" && test "$softmmu" = "no"; then +if test "$softmmu" = "no"; then pixman_cflags= pixman_libs= |