diff options
author | Peter Eisentraut | 2022-12-28 13:20:53 +0000 |
---|---|---|
committer | Peter Eisentraut | 2022-12-28 14:10:27 +0000 |
commit | 24b55cd949a11b712927acf2557683976ee149ac (patch) | |
tree | 3697f20c9c8a48c80a357847bc7da375dce2da24 /src/common | |
parent | adb5c32eb53e1ffdc5c954aafcc5bc9ed93f3de6 (diff) |
Reorder some object files in makefiles
This restores some once-intended alphabetical orders and makes the
lists consistent between the different build systems.
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/Makefile b/src/common/Makefile index e9af7346c9c..898701fae1c 100644 --- a/src/common/Makefile +++ b/src/common/Makefile @@ -83,9 +83,9 @@ OBJS_COMMON = \ ifeq ($(with_ssl),openssl) OBJS_COMMON += \ - protocol_openssl.o \ cryptohash_openssl.o \ - hmac_openssl.o + hmac_openssl.o \ + protocol_openssl.o else OBJS_COMMON += \ cryptohash.o \ |