diff options
author | Jim Blandy <jimb@redhat.com> | 1992-08-19 03:54:51 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-08-19 03:54:51 +0000 |
commit | ef15f270dbada67b43f58cc26056fb7efe083ceb (patch) | |
tree | 31a6893cbd6f878b0d86abcb6c34efa536a5bdda /configure1.in | |
parent | fbfed6f05fdf5bf363ca5691aefde4d573ce8203 (diff) | |
download | emacs-ef15f270dbada67b43f58cc26056fb7efe083ceb.tar.gz |
*** empty log message ***
Diffstat (limited to 'configure1.in')
-rwxr-xr-x | configure1.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure1.in b/configure1.in index 38aa36ad0e3..a8c2c79687a 100755 --- a/configure1.in +++ b/configure1.in @@ -407,14 +407,14 @@ sigtype=void if [ "${signal_h_file}" ]; then sigpattern='[ ]*([ ]*\*[ ]*signal[ ]*(' - # We make a symbolic link whose name ends in .c, so the compiler + # We make a copy whose name ends in .c, so the compiler # won't complain about having only been given a .h file. tempcname="configure.tmp.$$.c" - ln -s ${signal_h_file} ${tempcname} + cp ${signal_h_file} ${tempcname} if ${cc} -E ${tempcname} | grep "int${sigpattern}" > /dev/null; then sigtype=int fi - rm ${tempcname} + rm -f ${tempcname} fi echo "Examining the machine- and system-dependent files to find out" @@ -601,7 +601,7 @@ echo "# This file is generated by \`${progname}.' # running \`${progname}' instead. " >> config.status echo "${message}" | sed -e 's/^/# /' >> config.status -echo "'./${progname}' ${arguments} "'$@' >> config.status +echo "'${progname}' ${arguments} "'$@' >> config.status # Remind people not to edit this. chmod -w config.status chmod +x config.status |