diff options
author | Greg Hudson <ghudson@mit.edu> | 2009-05-24 00:48:31 +0000 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 2009-05-24 00:48:31 +0000 |
commit | 2c9b64dec8198a2914b75e678c6f664712d68bac (patch) | |
tree | c51097e6495c0abf9c248bafcf7bfa76139455de /src | |
parent | 694081fabc4d7133adb741264f0a6a8d8a37d0eb (diff) | |
download | krb5-2c9b64dec8198a2914b75e678c6f664712d68bac.tar.gz krb5-2c9b64dec8198a2914b75e678c6f664712d68bac.tar.xz krb5-2c9b64dec8198a2914b75e678c6f664712d68bac.zip |
Fix test rules for non-gmake make versions
The build rules for the new t_ad_fx_armor and t_authdata test programs
used $<, which is only portable for implicit rules (but is valid in
gmake for all rules). Stop using $< in those rules so that "make
check" works with System V make.
ticket: 6495
target_version: 1.7
tags: pullup
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@22368 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/krb5/krb/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/krb5/krb/Makefile.in b/src/lib/krb5/krb/Makefile.in index c5256b313..db1f82372 100644 --- a/src/lib/krb5/krb/Makefile.in +++ b/src/lib/krb5/krb/Makefile.in @@ -319,10 +319,10 @@ T_PRINC_OBJS= t_princ.o parse.o unparse.o t_walk_rtree: $(T_WALK_RTREE_OBJS) $(KRB5_BASE_DEPLIBS) $(CC_LINK) -o t_walk_rtree $(T_WALK_RTREE_OBJS) $(KRB5_BASE_LIBS) t_ad_fx_armor: t_ad_fx_armor.o - $(CC_LINK) -o $@ $< $(KRB5_BASE_LIBS) + $(CC_LINK) -o $@ t_ad_fx_armor.o $(KRB5_BASE_LIBS) t_authdata: t_authdata.o copy_auth.o - $(CC_LINK) -o $@ $< copy_auth.o $(KRB5_BASE_LIBS) + $(CC_LINK) -o $@ t_authdata.o copy_auth.o $(KRB5_BASE_LIBS) t_kerb: $(T_KERB_OBJS) $(KRB5_BASE_DEPLIBS) $(CC_LINK) -o t_kerb $(T_KERB_OBJS) $(KRB5_BASE_LIBS) |