build: Sort Makefile.am after renaming file

This commit is contained in:
MarcoFalke 2020-06-19 18:15:22 -04:00
parent cccc2784a3
commit fa4695da4c
No known key found for this signature in database
GPG key ID: CE2B75697E69A548

View file

@ -110,9 +110,9 @@ BITCOIN_CORE_H = \
banman.h \ banman.h \
base58.h \ base58.h \
bech32.h \ bech32.h \
bloom.h \
blockencodings.h \ blockencodings.h \
blockfilter.h \ blockfilter.h \
bloom.h \
chain.h \ chain.h \
chainparams.h \ chainparams.h \
chainparamsbase.h \ chainparamsbase.h \
@ -133,6 +133,7 @@ BITCOIN_CORE_H = \
core_io.h \ core_io.h \
core_memusage.h \ core_memusage.h \
cuckoocache.h \ cuckoocache.h \
dbwrapper.h \
flatfile.h \ flatfile.h \
fs.h \ fs.h \
httprpc.h \ httprpc.h \
@ -148,7 +149,6 @@ BITCOIN_CORE_H = \
interfaces/wallet.h \ interfaces/wallet.h \
key.h \ key.h \
key_io.h \ key_io.h \
dbwrapper.h \
limitedmap.h \ limitedmap.h \
logging.h \ logging.h \
logging/timer.h \ logging/timer.h \
@ -167,6 +167,7 @@ BITCOIN_CORE_H = \
node/context.h \ node/context.h \
node/psbt.h \ node/psbt.h \
node/transaction.h \ node/transaction.h \
node/ui_interface.h \
node/utxo_snapshot.h \ node/utxo_snapshot.h \
noui.h \ noui.h \
optional.h \ optional.h \
@ -206,13 +207,12 @@ BITCOIN_CORE_H = \
support/events.h \ support/events.h \
support/lockedpool.h \ support/lockedpool.h \
sync.h \ sync.h \
threadsafety.h \
threadinterrupt.h \ threadinterrupt.h \
threadsafety.h \
timedata.h \ timedata.h \
torcontrol.h \ torcontrol.h \
txdb.h \ txdb.h \
txmempool.h \ txmempool.h \
node/ui_interface.h \
undo.h \ undo.h \
util/asmap.h \ util/asmap.h \
util/bip32.h \ util/bip32.h \
@ -221,8 +221,6 @@ BITCOIN_CORE_H = \
util/error.h \ util/error.h \
util/fees.h \ util/fees.h \
util/golombrice.h \ util/golombrice.h \
util/spanparsing.h \
util/system.h \
util/macros.h \ util/macros.h \
util/memory.h \ util/memory.h \
util/message.h \ util/message.h \
@ -230,7 +228,9 @@ BITCOIN_CORE_H = \
util/rbf.h \ util/rbf.h \
util/ref.h \ util/ref.h \
util/settings.h \ util/settings.h \
util/spanparsing.h \
util/string.h \ util/string.h \
util/system.h \
util/threadnames.h \ util/threadnames.h \
util/time.h \ util/time.h \
util/translation.h \ util/translation.h \
@ -241,9 +241,9 @@ BITCOIN_CORE_H = \
validationinterface.h \ validationinterface.h \
versionbits.h \ versionbits.h \
versionbitsinfo.h \ versionbitsinfo.h \
walletinitinterface.h \
wallet/bdb.h \ wallet/bdb.h \
wallet/coincontrol.h \ wallet/coincontrol.h \
wallet/coinselection.h \
wallet/context.h \ wallet/context.h \
wallet/crypter.h \ wallet/crypter.h \
wallet/db.h \ wallet/db.h \
@ -258,7 +258,7 @@ BITCOIN_CORE_H = \
wallet/walletdb.h \ wallet/walletdb.h \
wallet/wallettool.h \ wallet/wallettool.h \
wallet/walletutil.h \ wallet/walletutil.h \
wallet/coinselection.h \ walletinitinterface.h \
warnings.h \ warnings.h \
zmq/zmqabstractnotifier.h \ zmq/zmqabstractnotifier.h \
zmq/zmqconfig.h\ zmq/zmqconfig.h\
@ -287,16 +287,16 @@ libbitcoin_server_a_SOURCES = \
blockfilter.cpp \ blockfilter.cpp \
chain.cpp \ chain.cpp \
consensus/tx_verify.cpp \ consensus/tx_verify.cpp \
dbwrapper.cpp \
flatfile.cpp \ flatfile.cpp \
httprpc.cpp \ httprpc.cpp \
httpserver.cpp \ httpserver.cpp \
index/base.cpp \ index/base.cpp \
index/blockfilterindex.cpp \ index/blockfilterindex.cpp \
index/txindex.cpp \ index/txindex.cpp \
init.cpp \
interfaces/chain.cpp \ interfaces/chain.cpp \
interfaces/node.cpp \ interfaces/node.cpp \
init.cpp \
dbwrapper.cpp \
miner.cpp \ miner.cpp \
net.cpp \ net.cpp \
net_processing.cpp \ net_processing.cpp \
@ -305,6 +305,7 @@ libbitcoin_server_a_SOURCES = \
node/context.cpp \ node/context.cpp \
node/psbt.cpp \ node/psbt.cpp \
node/transaction.cpp \ node/transaction.cpp \
node/ui_interface.cpp \
noui.cpp \ noui.cpp \
policy/fees.cpp \ policy/fees.cpp \
policy/rbf.cpp \ policy/rbf.cpp \
@ -323,7 +324,6 @@ libbitcoin_server_a_SOURCES = \
torcontrol.cpp \ torcontrol.cpp \
txdb.cpp \ txdb.cpp \
txmempool.cpp \ txmempool.cpp \
node/ui_interface.cpp \
validation.cpp \ validation.cpp \
validationinterface.cpp \ validationinterface.cpp \
versionbits.cpp \ versionbits.cpp \