Commit e4a7baf1 authored by Mike Gabriel's avatar Mike Gabriel

Regression fix for a93f64e4. The test executables bails out on test failure,…

Regression fix for a93f64e4. The test executables bails out on test failure, whereas ifdef does not. Adding "|| true" where needed.
parent a118ab80
...@@ -62,18 +62,18 @@ NX_XTRANS_HEADERS = \ ...@@ -62,18 +62,18 @@ NX_XTRANS_HEADERS = \
all: build all: build
clean: clean:
test -f nxcomp/Makefile && ${MAKE} -C nxcomp clean test -f nxcomp/Makefile && ${MAKE} -C nxcomp clean || true
test -f nxproxy/Makefile && ${MAKE} -C nxproxy clean test -f nxproxy/Makefile && ${MAKE} -C nxproxy clean || true
test -f nx-X11/lib/Makefile && ${MAKE} -C nx-X11/lib clean test -f nx-X11/lib/Makefile && ${MAKE} -C nx-X11/lib clean || true
test -f nxcompshad/Makefile && ${MAKE} -C nxcompshad clean test -f nxcompshad/Makefile && ${MAKE} -C nxcompshad clean || true
test -d nx-X11 && ${MAKE} clean-env test -d nx-X11 && ${MAKE} clean-env || true
distclean: clean distclean: clean
test -f nxcomp/Makefile && ${MAKE} -C nxcomp distclean test -f nxcomp/Makefile && ${MAKE} -C nxcomp distclean || true
test -f nxproxy/Makefile && ${MAKE} -C nxproxy distclean test -f nxproxy/Makefile && ${MAKE} -C nxproxy distclean || true
test -f nx-X11/lib/Makefile && ${MAKE} -C nx-X11/lib distclean test -f nx-X11/lib/Makefile && ${MAKE} -C nx-X11/lib distclean || true
test -f nxcompshad/Makefile && ${MAKE} -C nxcompshad distclean test -f nxcompshad/Makefile && ${MAKE} -C nxcompshad distclean || true
test -d nx-X11 && ${MAKE} -C nx-X11 distclean test -d nx-X11 && ${MAKE} -C nx-X11 distclean || true
test -x ./mesa-quilt && ./mesa-quilt pop -a test -x ./mesa-quilt && ./mesa-quilt pop -a
$(RM_DIR_REC) nx-X11/extras/Mesa/.pc/ $(RM_DIR_REC) nx-X11/extras/Mesa/.pc/
$(RM_FILE) nx-X11/config/cf/nxversion.def $(RM_FILE) nx-X11/config/cf/nxversion.def
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment