Skip to content

Commit

Permalink
Force creation of /usr/include directory by OS X installer
Browse files Browse the repository at this point in the history
  • Loading branch information
feeley committed Dec 12, 2013
1 parent 4c868ca commit 5ad4491
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/stamp.h
Expand Up @@ -2,5 +2,5 @@
* Time stamp of last source code repository commit.
*/

#define ___STAMP_YMD 20131211
#define ___STAMP_HMS 31200
#define ___STAMP_YMD 20131212
#define ___STAMP_HMS 152703
6 changes: 5 additions & 1 deletion prebuilt/macosx/postflight.in
@@ -1,6 +1,6 @@
#! /bin/sh

# Copyright (c) 1994-2009 by Marc Feeley, All Rights Reserved.
# Copyright (c) 1994-2013 by Marc Feeley, All Rights Reserved.

PROGRAMS="@PROGRAMS@"
LIBRARIES="@LIBRARIES@"
Expand All @@ -25,6 +25,10 @@ install_safely() # dir, gambc_dir, files
EXISTING_INCORRECT=""
MISSING=""

if [ ! -e "$DIR" ] ; then
mkdir -p -m 0755 "$DIR"
fi

for f in $FILES ; do

if [ -e "$DIR/$f" ] ; then
Expand Down

0 comments on commit 5ad4491

Please sign in to comment.