File: installsh.test

package info (click to toggle)
automake 1%3A1.4-p6-13.1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 2,360 kB
  • ctags: 26
  • sloc: perl: 5,527; sh: 5,269; ansic: 404; makefile: 167
file content (38 lines) | stat: -rwxr-xr-x 766 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#! /bin/sh

# Test for this bug:
# automake: Makefile.am: required file "../../install-sh" not found; installing
# This also makes sure that install-sh is created in the correct directory.

. $srcdir/defs || exit 1

: > Makefile.am
rm install-sh

# Since the default path includes '../..', we must run this test in
# yet another subdir.
mkdir frob
mv Makefile.am configure.in mkinstalldirs frob/
cd frob

# If srcdir is relative, we need to modify it.
case "$srcdir" in
 /*)
    ;;

 *)
    srcdir="../$srcdir"
    ;;
esac

AUTOMAKE="../../../automake --amdir=$srcdir/.. --foreign"

# Now we proceed with the test
$AUTOMAKE --add-missing > output 2>&1 \
   || exit 1

# Only one `/' should appear in the output.
grep '/.*/' output \
   && exit 1

test -f install-sh