diff options
author | Theodore Ts'o <tytso@mit.edu> | 2004-02-29 22:46:49 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2004-02-29 22:46:49 -0500 |
commit | 434661f8d5efd0999e586dfbf73b319f070bc20b (patch) | |
tree | 798d87a928f65469069a774f03d79571fb19950e /lib/e2p/Makefile.in | |
parent | e55043f87678587a03895d9629efb1c5a659d392 (diff) | |
download | e2fsprogs-434661f8d5efd0999e586dfbf73b319f070bc20b.tar.gz |
Patch from Brian Bergstrand to use the correct -fPIC flag for
Darwin in order to get rid of the compiler warning.
Diffstat (limited to 'lib/e2p/Makefile.in')
-rw-r--r-- | lib/e2p/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/e2p/Makefile.in b/lib/e2p/Makefile.in index e2973155..f1e267b9 100644 --- a/lib/e2p/Makefile.in +++ b/lib/e2p/Makefile.in @@ -68,7 +68,7 @@ BSDLIB_INSTALL_DIR = $(root_libdir) @DLL_CMT@ (export JUMP_DIR=`pwd`/jump; $(CC) -B$(JUMP_PREFIX) $(ALL_CFLAGS) \ @DLL_CMT@ -o jump/$*.o -c $<) @ELF_CMT@ $(CC) $(ALL_CFLAGS) -fPIC -o elfshared/$*.o -c $< -@BSDLIB_CMT@ $(CC) $(ALL_CFLAGS) -fpic -o pic/$*.o -c $< +@BSDLIB_CMT@ $(CC) $(ALL_CFLAGS) $(BSDLIB_PIC_FLAG) -o pic/$*.o -c $< installdirs:: $(top_srcdir)/mkinstalldirs $(DESTDIR)$(libdir) \ |