diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2005-03-29 14:05:40 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2005-03-29 14:05:40 +0000 |
commit | ba82d67e1db5a6a793f6564f926e6a0f8b17f782 (patch) | |
tree | e8525fe309995cc740cdcc7858dc07c4d937e2bc | |
parent | 5075a29eb5fe11890e72fa27305f164586054858 (diff) | |
download | pam-ba82d67e1db5a6a793f6564f926e6a0f8b17f782.tar.gz pam-ba82d67e1db5a6a793f6564f926e6a0f8b17f782.tar.bz2 pam-ba82d67e1db5a6a793f6564f926e6a0f8b17f782.zip |
Relevant BUGIDs: none
Purpose of commit: bugfix
Commit summary:
---------------
Fix make clean (remove symlinks)
-rw-r--r-- | libpam/Makefile | 1 | ||||
-rw-r--r-- | libpam_misc/Makefile | 1 | ||||
-rw-r--r-- | libpamc/Makefile | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/libpam/Makefile b/libpam/Makefile index 2a55577f..7f7387d7 100644 --- a/libpam/Makefile +++ b/libpam/Makefile @@ -159,6 +159,7 @@ endif clean: rm -f a.out core *~ static/*.o dynamic/*.o + rm -f *.orig $(LIBPAMNAME) $(LIBPAMFULL) rm -f *.a *.o *.so ./include/security/*~ if [ -d dynamic ]; then rmdir dynamic ; fi if [ -d static ]; then rmdir static ; fi diff --git a/libpam_misc/Makefile b/libpam_misc/Makefile index bb7ec27c..2bc842fb 100644 --- a/libpam_misc/Makefile +++ b/libpam_misc/Makefile @@ -112,5 +112,6 @@ endif clean: rm -f a.out core *~ static/*.o dynamic/*.o rm -f *.a *.out *.o *.so ./include/security/*~ + rm -f *.orig $(LIBNAMEDNAME) $(LIBNAMEDFULL) if [ -d dynamic ]; then rmdir dynamic ; fi if [ -d static ]; then rmdir static ; fi diff --git a/libpamc/Makefile b/libpamc/Makefile index f15aadd8..db2749cd 100644 --- a/libpamc/Makefile +++ b/libpamc/Makefile @@ -110,6 +110,7 @@ endif clean: rm -f a.out core *~ static/*.o dynamic/*.o rm -f *.a *.out *.o *.so ./include/security/*~ + rm -f *.orig $(LIBNAMEDNAME) $(LIBNAMEDFULL) if [ -d dynamic ]; then rmdir dynamic ; fi if [ -d static ]; then rmdir static ; fi |