tom 2008/04/13 10:22:45 BST
Modified files:
exim-src/scripts Configure-os.h
Log:
seems there is no "-a" parameter to "cp" in non-gnu "cp". Use "-p" instead.
Revision Changes Path
1.3 +1 -1 exim/exim-src/scripts/Configure-os.h
Index: Configure-os.h
===================================================================
RCS file: /home/cvs/exim/exim-src/scripts/Configure-os.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Configure-os.h 17 Jan 2008 13:03:35 -0000 1.2
+++ Configure-os.h 13 Apr 2008 09:22:45 -0000 1.3
@@ -1,5 +1,5 @@
#! /bin/sh
-# $Cambridge: exim/exim-src/scripts/Configure-os.h,v 1.2 2008/01/17 13:03:35 tom Exp $
+# $Cambridge: exim/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 @@
# 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".