-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
31 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
#!/bin/sh | ||
# | ||
# This file was found distributed in numerous places on the | ||
# web, including, but not limited to NetBSD, which is covered | ||
# by the three clause BSD license. No accompanying copyright | ||
# information was found in it. Since the file has been so | ||
# widely distributed without a copyright notice, I assume | ||
# the file is actually in the public domain. I have modified | ||
# it considerably since and hereby place my modifications | ||
# in the public domain. | ||
# | ||
# libtool assumes that the compiler can handle the -fPIC flag | ||
# This isn't always true (for example, yasm can't handle it) | ||
command="" | ||
while [ $# -gt 0 ]; do | ||
case "$1" in | ||
-DPIC) | ||
command="$command -D PIC" | ||
;; | ||
-fPIC) | ||
;; | ||
-fno-common) | ||
;; | ||
*) | ||
command="$command $1" | ||
;; | ||
esac | ||
shift | ||
done | ||
echo $command | ||
exec $command | ||
#!/bin/sh | ||
# | ||
# This file was found distributed in numerous places on the | ||
# web, including, but not limited to NetBSD, which is covered | ||
# by the three clause BSD license. No accompanying copyright | ||
# information was found in it. Since the file has been so | ||
# widely distributed without a copyright notice, I assume | ||
# the file is actually in the public domain. I have modified | ||
# it considerably since and hereby place my modifications | ||
# in the public domain. | ||
# | ||
# libtool assumes that the compiler can handle the -fPIC flag | ||
# This isn't always true (for example, yasm can't handle it) | ||
command="" | ||
while [ $# -gt 0 ]; do | ||
case "$1" in | ||
-DPIC) | ||
command="$command -D PIC" | ||
;; | ||
-fPIC) | ||
;; | ||
-fno-common) | ||
;; | ||
*) | ||
command="$command $1" | ||
;; | ||
esac | ||
shift | ||
done | ||
echo $command | ||
exec $command |