diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2007-05-03 15:49:59 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2007-05-03 15:49:59 +0000 |
| commit | a1d7593761e8cff497a74a021ab33c9382fbfeef (patch) | |
| tree | 272e29f3d2a3ed79fa9dee7f6213dcf25606fb79 | |
| parent | d84e2832f7534558f66ea117073c8ee5320fcbd1 (diff) | |
STR #1632: restored files to the original settings. I a no expert with build files, so I will leave this to someone who can fix this right. Matthias.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5800 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | makeinclude.in | 3 | ||||
| -rwxr-xr-x | mkinstalldirs | 48 |
2 files changed, 1 insertions, 50 deletions
diff --git a/makeinclude.in b/makeinclude.in index f2d2e9a8f..a5a5875e3 100644 --- a/makeinclude.in +++ b/makeinclude.in @@ -40,7 +40,6 @@ VPATH = @srcdir@ # programs we use... HTMLDOC = @HTMLDOC@ INSTALL = @INSTALL@ -MKDIRR = ../mkinstalldirs LN = ln -s NROFF = @NROFF@ RM = rm -f @@ -115,7 +114,7 @@ CAT6EXT = @CAT6EXT@ INSTALL_BIN = $(INSTALL) -m 755 INSTALL_DATA = $(INSTALL) -m 644 -INSTALL_DIR = $(MKDIRR) +INSTALL_DIR = $(INSTALL) -d INSTALL_LIB = $(INSTALL) -m 755 INSTALL_MAN = $(INSTALL) -m 644 INSTALL_SCRIPT = $(INSTALL) -m 755 diff --git a/mkinstalldirs b/mkinstalldirs deleted file mode 100755 index 0fdf6bf16..000000000 --- a/mkinstalldirs +++ /dev/null @@ -1,48 +0,0 @@ -#! /bin/sh -# mkinstalldirs --- make directory hierarchy -# Author: Noah Friedman <friedman@prep.ai.mit.edu> -# Created: 1993-05-16 -# Public domain - -# $Id: mkinstalldirs,v 1.13 1999/01/05 03:18:55 bje Exp $ - -errstatus=0 - -for file -do - set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` - shift - - pathcomp= - for d - do - pathcomp="$pathcomp$d" - case "$pathcomp" in - -* ) pathcomp=./$pathcomp ;; - esac - - if test ! -d "$pathcomp"; then - - mkdir "$pathcomp" || lasterr=$? - - if test ! -d "$pathcomp"; then - errstatus=$lasterr - else - lasterr="" - - chmod 755 "$pathcomp" || lasterr=$? - - if test ! -z "$lasterr"; then - errstatus=$lasterr - fi - fi - fi - - pathcomp="$pathcomp/" - done -done - -exit $errstatus - -# mkinstalldirs ends here - |
