diff options
author | Theodore Ts'o <tytso@mit.edu> | 2006-03-10 21:39:40 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2006-03-10 21:39:40 -0500 |
commit | 3f546fcc27e9bfca8d365c4d78c6e6c99ca32512 (patch) | |
tree | 49f0789c3396de4615a1e7894b5f285fb4cb86b7 /lib/Makefile.checker | |
parent | ba5e38494e6b42d77f76d9ad18744388958eca7c (diff) | |
download | e2fsprogs-3f546fcc27e9bfca8d365c4d78c6e6c99ca32512.tar.gz |
Fix the subdirs logic so it works with GNU make 3.80
The previous fix which fixed the problem with GNU make 3.81 building
all of the library object files caused GNU make 3.80 fail because the
subdirectories (such as elfshared) were not getting created. This fix
should allow the Makefiles to work with both GNU make 3.80 and GNU
make 3.81.
Diffstat (limited to 'lib/Makefile.checker')
-rw-r--r-- | lib/Makefile.checker | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile.checker b/lib/Makefile.checker index 304fc558..95974fad 100644 --- a/lib/Makefile.checker +++ b/lib/Makefile.checker @@ -1,6 +1,6 @@ all:: checker $(LIBRARY)_chk.a -subdirs:: Makefile +real-subdirs:: Makefile @echo " MKDIR checker" @mkdir -p checker |