Skip to content

Commit f177332

Browse files
author
Stan Skowronek
committed
Fix directory name after FRON-58.
1 parent feb9ad4 commit f177332

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
AUTOMAKE_OPTIONS = foreign
22
ACLOCAL_AMFLAGS = -I m4
3-
SUBDIRS = src tools
3+
SUBDIRS = usbfluxd tools
44

55
EXTRA_DIST = COPYING.GPLv2 COPYING.GPLv3
66

USBFlux/USBFlux.xcodeproj/project.pbxproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
0430E93E20BEF9F10047F28C /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
3131
0430E94020BEF9F10047F28C /* USBFlux.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = USBFlux.entitlements; sourceTree = "<group>"; };
3232
0430E95120C00CA30047F28C /* AuthIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AuthIcon.png; sourceTree = "<group>"; };
33-
0430E95320C02E5B0047F28C /* usbfluxd */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; name = usbfluxd; path = ../src/usbfluxd; sourceTree = "<group>"; };
33+
0430E95320C02E5B0047F28C /* usbfluxd */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; name = usbfluxd; path = ../usbfluxd/usbfluxd; sourceTree = "<group>"; };
3434
047357A320DB2A9F0089445A /* terminate.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; name = terminate.sh; path = USBFlux/terminate.sh; sourceTree = "<group>"; };
3535
04D7270A215BD74000B29E2E /* Corellium.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Corellium.h; sourceTree = "<group>"; };
3636
04D7270B215BD74000B29E2E /* Corellium.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Corellium.m; sourceTree = "<group>"; };

build-gui.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if test -n $CONFIG_VERSION; then
77
fi
88

99
make
10-
codesign -s "Developer ID Application: Corellium LLC (XG264R6QP8)" src/usbfluxd
10+
codesign -s "Developer ID Application: Corellium LLC (XG264R6QP8)" usbfluxd/usbfluxd
1111
codesign -s "Developer ID Application: Corellium LLC (XG264R6QP8)" tools/usbfluxctl
1212

1313
COMMIT=`git rev-parse HEAD`

configure.ac

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ AC_PREREQ(2.64)
55
AC_INIT([usbfluxd], [1.2.0], [https://corellium.com],, [https://corellium.com])
66
AM_INIT_AUTOMAKE([dist-bzip2 no-dist-gzip check-news])
77
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
8-
AC_CONFIG_SRCDIR([src/])
8+
AC_CONFIG_SRCDIR([usbfluxd/])
99
AC_CONFIG_HEADERS([config.h])
1010
AC_CONFIG_MACRO_DIR([m4])
1111

@@ -91,7 +91,7 @@ m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
9191

9292
AC_OUTPUT([
9393
Makefile
94-
src/Makefile
94+
usbfluxd/Makefile
9595
tools/Makefile
9696
])
9797

makedmg.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ BUILDDIR="USBFlux/build/Release"
1111
# build the daemon
1212
make clean && make
1313
# sign it
14-
codesign -s "Developer ID Application: Corellium LLC (XG264R6QP8)" src/usbfluxd
14+
codesign -s "Developer ID Application: Corellium LLC (XG264R6QP8)" usbfluxd/usbfluxd
1515

1616
COMMIT=`git rev-parse HEAD`
1717
if test -z $COMMIT; then

0 commit comments

Comments
 (0)