diff options
author | Steve Langasek <vorlon@debian.org> | 2003-07-13 19:16:34 +0000 |
---|---|---|
committer | Steve Langasek <vorlon@debian.org> | 2003-07-13 19:16:34 +0000 |
commit | e47f603bff623f42e49f56386f9c9640389edb44 (patch) | |
tree | b313be5d856a5c1649c808e25d4420e43a3c077e | |
parent | 2f36c829822a4b016ba075575c720ad9cb3c6463 (diff) | |
download | pam-e47f603bff623f42e49f56386f9c9640389edb44.tar.gz pam-e47f603bff623f42e49f56386f9c9640389edb44.tar.bz2 pam-e47f603bff623f42e49f56386f9c9640389edb44.zip |
Relevant BUGIDs: 643360
Purpose of commit: bugfix
Commit summary:
---------------
Use the value of $(PIC) whenever we're compiling dynamic libs/modules;
this is required on most architectures.
-rw-r--r-- | Make.Rules.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Make.Rules.in b/Make.Rules.in index e42c965b..2aab9bf9 100644 --- a/Make.Rules.in +++ b/Make.Rules.in @@ -109,3 +109,7 @@ STRIP=@STRIP@ CC_STATIC=@CC_STATIC@ LINKLIBS = $(NEED_LINK_LIB_C) $(LIBDL) + +ifdef DYNAMIC +CFLAGS += $(PIC) +endif |