diff options
author | das <das@noemail.net> | 2008-03-12 16:17:16 (GMT) |
---|---|---|
committer | das <das@noemail.net> | 2008-03-12 16:17:16 (GMT) |
commit | 2408abceff21eb4123e7f21c438f76c1b7829b38 (patch) | |
tree | 49d5cd8f208008c8f15270efb35840be0690907a | |
parent | 5d799c7cef09dfe9cc906511ee2c3f8ec8c0690e (diff) | |
download | tk-2408abceff21eb4123e7f21c438f76c1b7829b38.zip tk-2408abceff21eb4123e7f21c438f76c1b7829b38.tar.gz tk-2408abceff21eb4123e7f21c438f76c1b7829b38.tar.bz2 |
handle quoting of possibly empty XLIB_INCLUDE_INSTALL_DIR. [Bug 1912679]
FossilOrigin-Name: 8b259332fc17de2a17cb5a681b65b7c8000e1e08
-rw-r--r-- | unix/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 0742a4f..3e07a21 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.139 2008/03/11 22:33:22 das Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.140 2008/03/12 16:17:17 das Exp $ # Current Tk version; used in various names. @@ -738,7 +738,7 @@ install-libraries: libraries "$(SCRIPT_INSTALL_DIR)" "$(SCRIPT_INSTALL_DIR)"/images \ "$(SCRIPT_INSTALL_DIR)"/msgs "$(SCRIPT_INSTALL_DIR)"/ttk; \ do \ - if [ ! -d "$$i" ] ; then \ + if [ -n "$$i" -a ! -d "$$i" ] ; then \ echo "Making directory $$i"; \ mkdir -p "$$i"; \ chmod 755 "$$i"; \ |