diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2020-08-07 18:00:00 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2020-08-07 18:00:00 +0000 |
commit | c0b3c9fa05424f9606b0c348e0052bfb3bda3fa9 (patch) | |
tree | 6a7a0ac7a1abcec8c3f59c8a4bf83f96ee50e7d9 /modules/pam_unix/Makefile.am | |
parent | 0ca78051452625ec7c30f51f9408ea4c40de713e (diff) | |
download | pam-c0b3c9fa05424f9606b0c348e0052bfb3bda3fa9.tar.gz pam-c0b3c9fa05424f9606b0c348e0052bfb3bda3fa9.tar.bz2 pam-c0b3c9fa05424f9606b0c348e0052bfb3bda3fa9.zip |
build: rename PIE_* AC_SUBST variables to EXE_*
There are going to be other options added to CFLAGS and LDFLAGS
of executables made along with modules.
* configure.ac (EXE_CFLAGS, EXE_LDFLAGS): New variables initialized from
PIE_CFLAGS and PIE_LDFLAGS, respectively. AC_SUBST them instead of
PIE_CFLAGS and PIE_LDFLAGS. All users updated.
Diffstat (limited to 'modules/pam_unix/Makefile.am')
-rw-r--r-- | modules/pam_unix/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/pam_unix/Makefile.am b/modules/pam_unix/Makefile.am index 6463872a..1658735b 100644 --- a/modules/pam_unix/Makefile.am +++ b/modules/pam_unix/Makefile.am @@ -47,14 +47,14 @@ bigcrypt_LDADD = @LIBCRYPT@ unix_chkpwd_SOURCES = unix_chkpwd.c md5_good.c md5_broken.c bigcrypt.c \ passverify.c -unix_chkpwd_CFLAGS = $(AM_CFLAGS) @PIE_CFLAGS@ -DHELPER_COMPILE=\"unix_chkpwd\" -unix_chkpwd_LDFLAGS = @PIE_LDFLAGS@ +unix_chkpwd_CFLAGS = $(AM_CFLAGS) @EXE_CFLAGS@ -DHELPER_COMPILE=\"unix_chkpwd\" +unix_chkpwd_LDFLAGS = @EXE_LDFLAGS@ unix_chkpwd_LDADD = @LIBCRYPT@ @LIBSELINUX@ @LIBAUDIT@ unix_update_SOURCES = unix_update.c md5_good.c md5_broken.c bigcrypt.c \ passverify.c -unix_update_CFLAGS = $(AM_CFLAGS) @PIE_CFLAGS@ -DHELPER_COMPILE=\"unix_update\" -unix_update_LDFLAGS = @PIE_LDFLAGS@ +unix_update_CFLAGS = $(AM_CFLAGS) @EXE_CFLAGS@ -DHELPER_COMPILE=\"unix_update\" +unix_update_LDFLAGS = @EXE_LDFLAGS@ unix_update_LDADD = @LIBCRYPT@ @LIBSELINUX@ if ENABLE_REGENERATE_MAN |