diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-05-07 07:18:52 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-05-07 07:18:52 +0000 |
commit | 5e5a89415541aa824614312e649194bd9e734835 (patch) | |
tree | 03340a9d52c0b5fc10775069f09234635b47980e /Build | |
parent | 68ad3c997069b0b41de4501275d820b033ab5097 (diff) |
kpathsea: Avoid an infinite make loop when only mingw32.h or win32lib.h is changed
git-svn-id: svn://tug.org/texlive/trunk@26240 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/kpathsea/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/kpathsea/Makefile.am | 2 | ||||
-rw-r--r-- | Build/source/texk/kpathsea/Makefile.in | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog index e521092dc90..cc38fb4c8d5 100644 --- a/Build/source/texk/kpathsea/ChangeLog +++ b/Build/source/texk/kpathsea/ChangeLog @@ -1,3 +1,8 @@ +2012-05-06 Peter Breitenlohner <peb@mppmu.mpg.de> + + * Makefile.am (rebuild): Depend on 'all-am' instead of 'all' to + avoid an infinite loop. + 2012-05-05 Peter Breitenlohner <peb@mppmu.mpg.de> * win32lib.[ch]: Copyright 2012. diff --git a/Build/source/texk/kpathsea/Makefile.am b/Build/source/texk/kpathsea/Makefile.am index 6305c47da5f..f544dc046bf 100644 --- a/Build/source/texk/kpathsea/Makefile.am +++ b/Build/source/texk/kpathsea/Makefile.am @@ -7,7 +7,7 @@ ACLOCAL_AMFLAGS = -I ../../m4 # Rebuild .PHONY: rebuild -rebuild: all +rebuild: all-am touch libkpathsea.la SUBDIRS = . doc man diff --git a/Build/source/texk/kpathsea/Makefile.in b/Build/source/texk/kpathsea/Makefile.in index 6c3522e5a70..0a3ac1c4472 100644 --- a/Build/source/texk/kpathsea/Makefile.in +++ b/Build/source/texk/kpathsea/Makefile.in @@ -1900,7 +1900,7 @@ uninstall-am: uninstall-binPROGRAMS uninstall-dist_web2cDATA \ # Rebuild .PHONY: rebuild -rebuild: all +rebuild: all-am touch libkpathsea.la $(libkpathsea_la_OBJECTS): paths.h kpathsea.h |