Restore compilation order of source files
Restore the order of the source files so that they are once again compiled in order A-Z, a-z. Order is obtained with: fgrep .cc src/Makefile.am | LANG=C sort fgrep .h include/Makefile.am | LANG=C sort
This commit is contained in:
parent
6f9b99f138
commit
a70bfd32fe
|
@ -1,58 +1,58 @@
|
||||||
gparted_includedir = $(pkgincludedir)
|
gparted_includedir = $(pkgincludedir)
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
Device.h \
|
Copy_Blocks.h \
|
||||||
|
DMRaid.h \
|
||||||
|
Device.h \
|
||||||
|
DialogFeatures.h \
|
||||||
|
DialogManageFlags.h \
|
||||||
Dialog_Base_Partition.h \
|
Dialog_Base_Partition.h \
|
||||||
Dialog_Disklabel.h \
|
Dialog_Disklabel.h \
|
||||||
Dialog_Rescue_Data.h \
|
|
||||||
Dialog_Partition_Copy.h \
|
Dialog_Partition_Copy.h \
|
||||||
Dialog_Partition_Info.h \
|
Dialog_Partition_Info.h \
|
||||||
Dialog_Partition_Label.h \
|
Dialog_Partition_Label.h \
|
||||||
Dialog_Partition_New.h \
|
Dialog_Partition_New.h \
|
||||||
Dialog_Partition_Resize_Move.h \
|
Dialog_Partition_Resize_Move.h \
|
||||||
Dialog_Progress.h \
|
Dialog_Progress.h \
|
||||||
DialogFeatures.h \
|
Dialog_Rescue_Data.h \
|
||||||
DialogManageFlags.h \
|
DrawingAreaVisualDisk.h \
|
||||||
DrawingAreaVisualDisk.h \
|
FS_Info.h \
|
||||||
DMRaid.h \
|
FileSystem.h \
|
||||||
FileSystem.h \
|
|
||||||
Frame_Resizer_Base.h \
|
Frame_Resizer_Base.h \
|
||||||
Frame_Resizer_Extended.h \
|
Frame_Resizer_Extended.h \
|
||||||
FS_Info.h \
|
GParted_Core.h \
|
||||||
GParted_Core.h \
|
HBoxOperations.h \
|
||||||
HBoxOperations.h \
|
|
||||||
LVM2_PV_Info.h \
|
LVM2_PV_Info.h \
|
||||||
Operation.h \
|
Operation.h \
|
||||||
OperationCopy.h \
|
OperationChangeUUID.h \
|
||||||
OperationCheck.h \
|
OperationCheck.h \
|
||||||
|
OperationCopy.h \
|
||||||
OperationCreate.h \
|
OperationCreate.h \
|
||||||
OperationDelete.h \
|
OperationDelete.h \
|
||||||
OperationDetail.h \
|
OperationDetail.h \
|
||||||
OperationFormat.h \
|
OperationFormat.h \
|
||||||
OperationResizeMove.h \
|
|
||||||
OperationChangeUUID.h \
|
|
||||||
OperationLabelPartition.h \
|
OperationLabelPartition.h \
|
||||||
Partition.h \
|
OperationResizeMove.h \
|
||||||
Proc_Partitions_Info.h \
|
Partition.h \
|
||||||
TreeView_Detail.h \
|
PipeCapture.h \
|
||||||
Utils.h \
|
Proc_Partitions_Info.h \
|
||||||
Win_GParted.h \
|
TreeView_Detail.h \
|
||||||
|
Utils.h \
|
||||||
|
Win_GParted.h \
|
||||||
btrfs.h \
|
btrfs.h \
|
||||||
exfat.h \
|
exfat.h \
|
||||||
ext2.h \
|
ext2.h \
|
||||||
f2fs.h \
|
f2fs.h \
|
||||||
fat16.h \
|
fat16.h \
|
||||||
hfs.h \
|
hfs.h \
|
||||||
hfsplus.h \
|
hfsplus.h \
|
||||||
i18n.h \
|
i18n.h \
|
||||||
jfs.h \
|
jfs.h \
|
||||||
linux_swap.h \
|
linux_swap.h \
|
||||||
lvm2_pv.h \
|
lvm2_pv.h \
|
||||||
nilfs2.h \
|
nilfs2.h \
|
||||||
ntfs.h \
|
ntfs.h \
|
||||||
reiser4.h \
|
reiser4.h \
|
||||||
reiserfs.h \
|
reiserfs.h \
|
||||||
ufs.h \
|
ufs.h \
|
||||||
xfs.h \
|
xfs.h
|
||||||
PipeCapture.h \
|
|
||||||
Copy_Blocks.h
|
|
||||||
|
|
|
@ -12,38 +12,40 @@ AM_CXXFLAGS = -Wall
|
||||||
sbin_PROGRAMS = gpartedbin
|
sbin_PROGRAMS = gpartedbin
|
||||||
|
|
||||||
gpartedbin_SOURCES = \
|
gpartedbin_SOURCES = \
|
||||||
|
Copy_Blocks.cc \
|
||||||
|
DMRaid.cc \
|
||||||
Device.cc \
|
Device.cc \
|
||||||
|
DialogFeatures.cc \
|
||||||
|
DialogManageFlags.cc \
|
||||||
Dialog_Base_Partition.cc \
|
Dialog_Base_Partition.cc \
|
||||||
Dialog_Disklabel.cc \
|
Dialog_Disklabel.cc \
|
||||||
Dialog_Rescue_Data.cc \
|
|
||||||
Dialog_Partition_Copy.cc \
|
Dialog_Partition_Copy.cc \
|
||||||
Dialog_Partition_Info.cc \
|
Dialog_Partition_Info.cc \
|
||||||
Dialog_Partition_Label.cc \
|
Dialog_Partition_Label.cc \
|
||||||
Dialog_Partition_New.cc \
|
Dialog_Partition_New.cc \
|
||||||
Dialog_Partition_Resize_Move.cc \
|
Dialog_Partition_Resize_Move.cc \
|
||||||
Dialog_Progress.cc \
|
Dialog_Progress.cc \
|
||||||
DialogFeatures.cc \
|
Dialog_Rescue_Data.cc \
|
||||||
DialogManageFlags.cc \
|
|
||||||
DrawingAreaVisualDisk.cc \
|
DrawingAreaVisualDisk.cc \
|
||||||
DMRaid.cc \
|
FS_Info.cc \
|
||||||
FileSystem.cc \
|
FileSystem.cc \
|
||||||
Frame_Resizer_Base.cc \
|
Frame_Resizer_Base.cc \
|
||||||
Frame_Resizer_Extended.cc \
|
Frame_Resizer_Extended.cc \
|
||||||
FS_Info.cc \
|
|
||||||
GParted_Core.cc \
|
GParted_Core.cc \
|
||||||
HBoxOperations.cc \
|
HBoxOperations.cc \
|
||||||
LVM2_PV_Info.cc \
|
LVM2_PV_Info.cc \
|
||||||
Operation.cc \
|
Operation.cc \
|
||||||
OperationChangeUUID.cc \
|
OperationChangeUUID.cc \
|
||||||
OperationCopy.cc \
|
|
||||||
OperationCheck.cc \
|
OperationCheck.cc \
|
||||||
|
OperationCopy.cc \
|
||||||
OperationCreate.cc \
|
OperationCreate.cc \
|
||||||
OperationDelete.cc \
|
OperationDelete.cc \
|
||||||
OperationDetail.cc \
|
OperationDetail.cc \
|
||||||
OperationFormat.cc \
|
OperationFormat.cc \
|
||||||
OperationResizeMove.cc \
|
|
||||||
OperationLabelPartition.cc \
|
OperationLabelPartition.cc \
|
||||||
|
OperationResizeMove.cc \
|
||||||
Partition.cc \
|
Partition.cc \
|
||||||
|
PipeCapture.cc \
|
||||||
Proc_Partitions_Info.cc \
|
Proc_Partitions_Info.cc \
|
||||||
TreeView_Detail.cc \
|
TreeView_Detail.cc \
|
||||||
Utils.cc \
|
Utils.cc \
|
||||||
|
@ -61,12 +63,10 @@ gpartedbin_SOURCES = \
|
||||||
main.cc \
|
main.cc \
|
||||||
nilfs2.cc \
|
nilfs2.cc \
|
||||||
ntfs.cc \
|
ntfs.cc \
|
||||||
reiser4.cc \
|
reiser4.cc \
|
||||||
reiserfs.cc \
|
reiserfs.cc \
|
||||||
ufs.cc \
|
ufs.cc \
|
||||||
xfs.cc \
|
xfs.cc
|
||||||
PipeCapture.cc \
|
|
||||||
Copy_Blocks.cc
|
|
||||||
|
|
||||||
gpartedbin_LDFLAGS = -lparted
|
gpartedbin_LDFLAGS = -lparted
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue