Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emulab
emulab-devel
Commits
060213bf
Commit
060213bf
authored
Feb 12, 2010
by
Ryan Jackson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forgot to expand the WITH_(NTFS,FFS,EXTFS,FAT) variables.
parent
79d232a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
os/imagezip/Makefile-linux.sa
os/imagezip/Makefile-linux.sa
+7
-7
No files found.
os/imagezip/Makefile-linux.sa
View file @
060213bf
...
...
@@ -15,8 +15,8 @@ BINDIR= /usr/local/bin
#
WITH_EXTFS = 1
WITH_FFS = 1
WITH_FAT =
0
WITH_NTFS =
0
WITH_FAT =
1
WITH_NTFS =
1
WITH_EXT4FS = 0
PTHREADCFLAGS = -D_THREAD_SAFE -pthread
...
...
@@ -31,27 +31,27 @@ LIBS = -lz $(PTHREADLIBS)
UNZIPCFLAGS = $(CFLAGS) -Wall
UNZIPLIBS = $(LIBS)
ifeq (WITH_EXTFS, 1)
ifeq
($
(WITH_EXTFS
)
, 1)
FSOBJS += extfs/extfs.o extfs/reloc_lilo.o
CFLAGS += -DWITH_EXTFS -Iextfs
endif
ifeq (WITH_EXT4FS, 1)
ifeq
($
(WITH_EXT4FS
)
, 1)
FSOBJS += ext4fs/ext4fs.o ext4fs/reloc_lilo.o
CFLAGS += -DWITH_EXT4FS -Iext4fs
endif
ifeq (WITH_FFS, 1)
ifeq
($
(WITH_FFS
)
, 1)
FSOBJS += ffs/ffs.o
CFLAGS += -DWITH_FFS -Iffs
endif
ifeq (WITH_FAT, 1)
ifeq
($
(WITH_FAT
)
, 1)
FSOBJS += fat/fat_fat.o fat/fat_boot.o fat/fat_glue.o
CFLAGS += -DWITH_FAT -Ifat
endif
ifeq (WITH_NTFS, 1)
ifeq
($
(WITH_NTFS
)
, 1)
FSOBJS += ntfs/ntfs_glue.o
FSLIBS += ntfs/libntfs/libntfs.a
CFLAGS += -DWITH_NTFS -DOLD_LIBNTFS -Intfs/libntfs/ntfsprogs-1.7.1.linux/include
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment