diff options
author | Tom Tromey <tromey@redhat.com> | 1996-04-27 19:23:49 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1996-04-27 19:23:49 +0000 |
commit | aeb7b42c9c809fca4f559d7dc2e071dd3b652838 (patch) | |
tree | 3a8205db3ae4db35c06680b6540e0fb840a9f6dc /lib/am | |
parent | dc96fad3cdfeb0293e63202003c7ab5b2c45d6ea (diff) | |
download | automake-aeb7b42c9c809fca4f559d7dc2e071dd3b652838.tar.gz |
More fixes
Diffstat (limited to 'lib/am')
-rw-r--r-- | lib/am/data.am | 2 | ||||
-rw-r--r-- | lib/am/header.am | 2 | ||||
-rw-r--r-- | lib/am/scripts.am | 2 | ||||
-rw-r--r-- | lib/am/texinfos.am | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/am/data.am b/lib/am/data.am index 8ea1a47eb..f27bbdc83 100644 --- a/lib/am/data.am +++ b/lib/am/data.am @@ -16,7 +16,7 @@ ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA ## 02111-1307, USA. install-@DIR@DATA: $(@DIR@_DATA) - $(top_srcdir)/mkinstalldirs $(@DIR@dir) + $(mkinstalldirs) $(@DIR@dir) ## Funny invocation because Makefile variable can be empty, leading to ## a syntax error in sh. list="$(@DIR@_DATA)"; for p in $$list; do \ diff --git a/lib/am/header.am b/lib/am/header.am index 7b3b0e7c5..63eb1e049 100644 --- a/lib/am/header.am +++ b/lib/am/header.am @@ -16,7 +16,7 @@ ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA ## 02111-1307, USA. install-@DIR@HEADERS: $(@DIR@_HEADERS) - $(top_srcdir)/mkinstalldirs $(@DIR@dir) + $(mkinstalldirs) $(@DIR@dir) ## Funny invocation because Makefile variable can be empty, leading to ## a syntax error in sh. list="$(@DIR@_HEADERS)"; for p in $$list; do \ diff --git a/lib/am/scripts.am b/lib/am/scripts.am index 997e05f89..d881f1e8f 100644 --- a/lib/am/scripts.am +++ b/lib/am/scripts.am @@ -16,7 +16,7 @@ ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA ## 02111-1307, USA. install-@DIR@SCRIPTS: $(@DIR@_SCRIPTS) - $(top_srcdir)/mkinstalldirs $(@DIR@dir) + $(mkinstalldirs) $(@DIR@dir) ## Funny invocation because Makefile variable can be empty, leading to ## a syntax error in sh. list="$(@DIR@_SCRIPTS)"; for p in $$list; do \ diff --git a/lib/am/texinfos.am b/lib/am/texinfos.am index 7b6f7545b..7b22be90b 100644 --- a/lib/am/texinfos.am +++ b/lib/am/texinfos.am @@ -26,7 +26,7 @@ ## rebuilt in the build directory. Can't cd to srcdir; that might ## break a possible install-sh reference. install-info: $(INFO_DEPS) - $(top_srcdir)/mkinstalldirs $(infodir) + $(mkinstalldirs) $(infodir) for file in $(INFO_DEPS); do \ ## We use these strange circumlocutions because we want the "ifile" to ## be relative, for the install. |