summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Kistner <tom@duncanthrax.net>2008-04-13 09:22:45 +0000
committerTom Kistner <tom@duncanthrax.net>2008-04-13 09:22:45 +0000
commitff86345ee2c0b8c21e8008ca611932c726238a6b (patch)
tree5bd9e4c533db36838fcc042f419f812b1edd048f /src
parentcdd3bb85f08413f4efe9059b4554a3b7174b99d8 (diff)
seems there is no "-a" parameter to "cp" in non-gnu "cp". Use "-p" instead.
Diffstat (limited to 'src')
-rwxr-xr-xsrc/scripts/Configure-os.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scripts/Configure-os.h b/src/scripts/Configure-os.h
index afe4bf8ec..f3d8d5193 100755
--- a/src/scripts/Configure-os.h
+++ b/src/scripts/Configure-os.h
@@ -1,5 +1,5 @@
#! /bin/sh
-# $Cambridge: exim/src/scripts/Configure-os.h,v 1.2 2008/01/17 13:03:35 tom Exp $
+# $Cambridge: exim/src/scripts/Configure-os.h,v 1.3 2008/04/13 09:22:45 tom Exp $
# Shell script to create a link to the appropriate OS-specific header file.
@@ -31,7 +31,7 @@ rm -f os.h
# In order to accomodate for the fudge below, copy the file instead of
# symlinking it. Otherwise we pollute the clean copy with the fudge.
-cp -a ../OS/os.h-$os os.h || exit 1
+cp -p ../OS/os.h-$os os.h || exit 1
# Special-purpose fudge for older versions of Linux (pre 2.1.15) that
# use the structure name "options" instead of "ip_options".