From b92edd30cac39ecd23cf509ccb4a559410d18b3a Mon Sep 17 00:00:00 2001 From: Martin Nilsson <nilsson@opera.com> Date: Wed, 5 Jun 2013 17:05:55 +0200 Subject: [PATCH] Removed rsif and hilfe here as well. --- bin/install.pike | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/bin/install.pike b/bin/install.pike index 20d3b99444..05618f4d9f 100644 --- a/bin/install.pike +++ b/bin/install.pike @@ -922,7 +922,10 @@ int low_install_file(string from, } mkdirhier(dirname(to)); if(!mode) { - int src_mode = file_stat(from)->mode; + Stdio.Stat st = file_stat(from); + if(!st) + exit(1, "Could not find file %O\n", from); + int src_mode = st->mode; if (src_mode & 0111) { // Executable. mode = 0755; @@ -2812,12 +2815,6 @@ the PRIVATE_CRT stuff in install.pike.\n"); combine_path(exec_prefix, "pike.pdb")); #endif -#ifndef __NT__ - install_file(combine_path(vars->TMP_BUILDDIR,"rsif"), - combine_path(exec_prefix,"rsif")); - install_file(combine_path(vars->TMP_BUILDDIR,"hilfe"), - combine_path(exec_prefix,"hilfe")); -#endif install_file(combine_path(vars->TMP_BUILDDIR,"pike.syms"), pike+".syms"); -- GitLab