From 6b21b1ecfa60a4a929c423e392eb01f62c45a53e Mon Sep 17 00:00:00 2001 From: Ewen McNeill Date: Thu, 24 Jul 2014 11:13:24 +1200 Subject: [PATCH] z/OS: Avoid removing libzmq.pc.in in makeclean --- builds/zos/makeclean | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/builds/zos/makeclean b/builds/zos/makeclean index d6abe8de..4b46b726 100755 --- a/builds/zos/makeclean +++ b/builds/zos/makeclean @@ -2,6 +2,7 @@ # Remove built object files and test executables # # Written by Ewen McNeill , 2014-07-22 +# Updated by Ewen McNeill , 2014-07-24 #--------------------------------------------------------------------------- set -e # Stop on errors @@ -22,7 +23,7 @@ TESTS="${TOP}/tests" # Remove object/library files echo "Removing libzmq built files" -(cd "${SRC}" && rm -f *.o *.a *.dbg *.x libzmq* *.so) +(cd "${SRC}" && rm -f *.o *.a *.dbg *.x *.so libzmq) # Remove test object files echo "Removing libzmq tests"