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 = \
all: build
clean:
test -f nxcomp/Makefile && ${MAKE} -C nxcomp clean
test -f nxproxy/Makefile && ${MAKE} -C nxproxy clean
test -f nx-X11/lib/Makefile && ${MAKE} -C nx-X11/lib clean
test -f nxcompshad/Makefile && ${MAKE} -C nxcompshad clean
test -d nx-X11 && ${MAKE} clean-env
test -f nxcomp/Makefile && ${MAKE} -C nxcomp clean || true
test -f nxproxy/Makefile && ${MAKE} -C nxproxy clean || true
test -f nx-X11/lib/Makefile && ${MAKE} -C nx-X11/lib clean || true
test -f nxcompshad/Makefile && ${MAKE} -C nxcompshad clean || true
test -d nx-X11 && ${MAKE} clean-env || true
distclean: clean
test -f nxcomp/Makefile && ${MAKE} -C nxcomp distclean
test -f nxproxy/Makefile && ${MAKE} -C nxproxy distclean
test -f nx-X11/lib/Makefile && ${MAKE} -C nx-X11/lib distclean
test -f nxcompshad/Makefile && ${MAKE} -C nxcompshad distclean
test -d nx-X11 && ${MAKE} -C nx-X11 distclean
test -f nxcomp/Makefile && ${MAKE} -C nxcomp distclean || true
test -f nxproxy/Makefile && ${MAKE} -C nxproxy distclean || true
test -f nx-X11/lib/Makefile && ${MAKE} -C nx-X11/lib distclean || true
test -f nxcompshad/Makefile && ${MAKE} -C nxcompshad distclean || true
test -d nx-X11 && ${MAKE} -C nx-X11 distclean || true
test -x ./mesa-quilt && ./mesa-quilt pop -a
$(RM_DIR_REC) nx-X11/extras/Mesa/.pc/
$(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