Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / instsh3.test
blob0937a7a0f4226fe12bbb4207edb41ba7ec6bd72a
1 #! /bin/sh
2 # Copyright (C) 2006, 2008 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3, or (at your option)
7 # any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 # More install-sh checks: check -C.
19 required=non-root
20 . ./defs || Exit 1
21 set -e
23 # Solaris /usr/ucb/touch does not accept -t.
24 touch -t $old_timestamp foo || Exit 77
26 ./install-sh -d d1
28 # Do not change the timestamps when using -C.
29 echo foo >file
30 ./install-sh -C file d1
31 TZ=UTC0 touch -t $old_timestamp d1/file
32 ./install-sh -C file d1
33 is_newest file d1/file
34 echo foo1 >file
35 ./install-sh -C file d1
36 diff file d1/file
37 # Rights must be updated.
38 ./install-sh -C -m 444 file d1
39 test -r d1/file
40 test ! -w d1/file