diff options
author | Roy Marples <roy@marples.name> | 2008-01-07 09:39:44 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-01-07 09:39:44 +0000 |
commit | 74e0e58b899accd2bd72a7d7303331e47089959f (patch) | |
tree | ae6ae3c726a8e8b30ca53ad883df66aa0244ec0c /src/os.mk | |
parent | 18adcb1ee8d9c09b0788d899be421e0f5ef1068a (diff) |
Stop using CPPFLAGS
Diffstat (limited to 'src/os.mk')
-rw-r--r-- | src/os.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ RC_LIB= /$(LIB)/rc _DEF_SH= case `uname -s` in Linux) echo "-D_XOPEN_SOURCE=600 -D_BSD_SOURCE";; *) echo;; esac _DEF!= $(_DEF_SH) -CPPFLAGS+= $(_DEF)$(shell $(_DEF_SH)) +CFLAGS+= $(_DEF)$(shell $(_DEF_SH)) _LIBDL_SH= case `uname -s` in Linux) echo "-Wl,-Bdynamic -ldl";; *) echo;; esac _LIBDL!= $(_LIBDL_SH) |