diff options
author | Earnie Boyd <earnie@users.sf.net> | 2001-09-04 20:56:23 +0000 |
---|---|---|
committer | Earnie Boyd <earnie@users.sf.net> | 2001-09-04 20:56:23 +0000 |
commit | 615a70a882bdff5287f078d50b4991d4dd906ed9 (patch) | |
tree | bbc8a38382af8159a86ba55e61a503b5f5f0468e /winsup | |
parent | c729f22799bcd93a8524619242ce34a2d4fc6edd (diff) | |
download | newlib-615a70a882bdff5287f078d50b4991d4dd906ed9.zip newlib-615a70a882bdff5287f078d50b4991d4dd906ed9.tar.gz newlib-615a70a882bdff5287f078d50b4991d4dd906ed9.tar.bz2 |
2001-09-04 Earnie Boyd <earnie@SF.Net>
* lib/Makefile.in: Move the setting of variable libdir to after the
setting of exec_prefix since the value of libdir is dependant on it.
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/w32api/ChangeLog | 7 | ||||
-rw-r--r-- | winsup/w32api/lib/Makefile.in | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 98768fb..baa94ae 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,6 +1,11 @@ +2001-09-04 Earnie Boyd <earnie@SF.Net> + + * lib/Makefile.in: Move the setting of variable libdir to after the + setting of exec_prefix since the value of libdir is dependant on it. + Tue Sep 4 14:15:59 2001 Christopher Faylor <cgf@cygnus.com> - * winbase.h: Add missing closing parentheses to + * include/winbase.h: Add missing closing parentheses to InterlockedExchangePointer declaration. 2001-09-01 Danny Smith <dannysmith@users.sourceforge.net> diff --git a/winsup/w32api/lib/Makefile.in b/winsup/w32api/lib/Makefile.in index 5bec36c..0c06a3a 100644 --- a/winsup/w32api/lib/Makefile.in +++ b/winsup/w32api/lib/Makefile.in @@ -20,10 +20,10 @@ build_alias = @build_alias@ target_alias = @target_alias@ prefix = @prefix@ includedir:=@includedir@ -libdir:=@libdir@ program_transform_name = @program_transform_name@ exec_prefix = @exec_prefix@ +libdir:=@libdir@ bindir = @bindir@ ifeq ($(target_alias),$(host_alias)) ifeq ($(build_alias),$(host_alias)) |