Skip to content

Commit

Permalink
minor makefile bugfixes introduced with pull #10
Browse files Browse the repository at this point in the history
  • Loading branch information
Dav1dde committed Aug 13, 2012
1 parent 735b004 commit 1fb5a4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions command.make
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ endif

# Add -ldl flag for linux
ifeq ($(OS),"Linux")
LDCFLAGS += $(LINKERFLAG) -ldl
LDCFLAGS += $(LINKERFLAG)-ldl
endif

# If model are not given take the same as current system
Expand All @@ -169,7 +169,7 @@ ifndef ARCH
ARCH = x86_64
endif
else
ARCH = $(shell arch || uname -m)
ARCH = $(shell arch 2>/dev/null || uname -m)
endif
endif
ifndef MODEL
Expand Down

0 comments on commit 1fb5a4a

Please sign in to comment.